Searched refs:TH_ACK (Results 1 – 4 of 4) sorted by relevance
/openthread-latest/third_party/tcplp/bsdtcp/ |
D | tcp_fsm.h | 89 TH_RST|TH_ACK, /* 0, CLOSED */ 92 TH_SYN|TH_ACK, /* 3, SYN_RECEIVED */ 93 TH_ACK, /* 4, ESTABLISHED */ 94 TH_ACK, /* 5, CLOSE_WAIT */ 95 TH_FIN|TH_ACK, /* 6, FIN_WAIT_1 */ 96 TH_FIN|TH_ACK, /* 7, CLOSING */ 97 TH_FIN|TH_ACK, /* 8, LAST_ACK */ 98 TH_ACK, /* 9, FIN_WAIT_2 */ 99 TH_ACK, /* 10, TIME_WAIT */
|
D | tcp_timewait.c | 134 if ((tp->t_flags & TF_RCVD_TSTMP) && flags == TH_ACK) { in tcp_twrespond() 294 tcp_twrespond(tp, TH_ACK); in tcp_twstart() 346 if ((thflags & TH_ACK) == 0) in tcp_twcheck() 375 if ((thflags & TH_ACK) == 0) in tcp_twcheck() 390 if (thflags != TH_ACK || tlen != 0 || in tcp_twcheck() 392 tcp_twrespond(tp, TH_ACK); in tcp_twcheck()
|
D | tcp_input.c | 415 if (th->th_flags & TH_ACK) { in tcp_dropwithreset() 420 tcp_respond(tp, instance, ip6, th, th->th_seq + tlen, (tcp_seq) 0, TH_RST | TH_ACK); in tcp_dropwithreset() 683 if (thflags & TH_ACK) { in tcp_input() 717 KASSERT((thflags & (TH_RST|TH_ACK)) == 0, in tcp_input() 1212 (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK && in tcp_do_segment() 1494 if ((thflags & TH_ACK) && in tcp_do_segment() 1499 …} else if (!IS_FASTOPEN(tp->t_flags) && (thflags & TH_SYN) && !(thflags & TH_ACK) && (th->th_seq =… in tcp_do_segment() 1513 if ((thflags & (TH_SYN|TH_ACK)) == (TH_SYN|TH_ACK)) { in tcp_do_segment() 1521 } else if (!(thflags & (TH_ACK|TH_FIN|TH_RST))) { in tcp_do_segment() 1542 if ((thflags & TH_ACK) && in tcp_do_segment() [all …]
|
D | tcp.h | 89 #define TH_ACK 0x10 macro 93 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR)
|