Home
last modified time | relevance | path

Searched refs:thflags (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/third_party/tcplp/bsdtcp/
Dtcp_timewait.c311 int thflags; in tcp_twcheck() local
319 thflags = th->th_flags; in tcp_twcheck()
331 if (thflags & TH_RST) in tcp_twcheck()
346 if ((thflags & TH_ACK) == 0) in tcp_twcheck()
361 if ((thflags & TH_SYN) && SEQ_GT(th->th_seq, tp->rcv_nxt)) { in tcp_twcheck()
375 if ((thflags & TH_ACK) == 0) in tcp_twcheck()
381 if (thflags & TH_FIN) { in tcp_twcheck()
382 seq = th->th_seq + tlen + (thflags & TH_SYN ? 1 : 0); in tcp_twcheck()
390 if (thflags != TH_ACK || tlen != 0 || in tcp_twcheck()
Dtcp_input.c462 int thflags; in tcp_input() local
512 thflags = th->th_flags; in tcp_input()
668 if ((thflags & TH_SYN) == 0) { in tcp_input()
683 if (thflags & TH_ACK) { in tcp_input()
703 if ((thflags & TH_FIN) && V_drop_synfin) { in tcp_input()
717 KASSERT((thflags & (TH_RST|TH_ACK)) == 0, in tcp_input()
719 KASSERT(thflags & (TH_SYN), in tcp_input()
1032 int thflags, acked, ourfinisacked, needoutput = 0; in tcp_do_segment() local
1039 thflags = th->th_flags; in tcp_do_segment()
1080 if (thflags & TH_CWR) in tcp_do_segment()
[all …]