Searched refs:thflags (Results 1 - 3 of 3) sorted by relevance

/freebsd-11.0-release/sys/netinet/tcp_stacks/
H A Dfastpath.c501 int ti_locked, u_long tiwin, int thflags)
540 if ((thflags & TH_ACK) &&
563 if ((thflags & TH_ACK) &&
569 if ((thflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) {
574 if (thflags & TH_RST)
576 if (!(thflags & TH_SYN))
581 if (thflags & TH_ACK) {
605 if ((thflags & TH_ECE) && V_tcp_do_ecn) {
620 thflags &= ~TH_SYN;
658 thflags
499 tcp_do_slowpath(struct mbuf *m, struct tcphdr *th, struct socket *so, struct tcpcb *tp, struct tcpopt *to, int drop_hdrlen, int tlen, int ti_locked, u_long tiwin, int thflags) argument
1758 int thflags; local
2201 int thflags; local
[all...]
/freebsd-11.0-release/sys/netinet/
H A Dtcp_input.c599 int thflags; local
782 thflags = th->th_flags;
801 if ((thflags & (TH_FIN | TH_RST)) != 0) {
906 if ((tcp_log_in_vain == 1 && (thflags & TH_SYN)) ||
916 if ((V_blackhole == 1 && (thflags & TH_SYN)) ||
990 if (thflags & TH_SYN)
1027 if ((thflags & (TH_FIN | TH_RST)) != 0)
1030 if (!((tp->t_state == TCPS_ESTABLISHED && (thflags & TH_SYN) == 0) ||
1031 (tp->t_state == TCPS_LISTEN && (thflags & TH_SYN) &&
1101 if ((thflags
1502 int thflags, acked, ourfinisacked, needoutput = 0, sack_changed; local
[all...]
H A Dtcp_timewait.c367 int thflags; local
383 thflags = th->th_flags;
395 if (thflags & TH_RST)
406 if ((thflags & TH_ACK) == 0)
421 if ((thflags & TH_SYN) && SEQ_GT(th->th_seq, tw->rcv_nxt)) {
429 if ((thflags & TH_ACK) == 0)
435 if (thflags & TH_FIN) {
436 seq = th->th_seq + tlen + (thflags & TH_SYN ? 1 : 0);
444 if (thflags != TH_ACK || tlen != 0 ||

Completed in 109 milliseconds