Home
last modified time | relevance | path

Searched refs:SYN_RCVD (Results 1 – 9 of 9) sorted by relevance

/third_party/lwip/
Dbackport-tcp-tighten-up-checks-for-received-SYN.patch25 + if ((pcb->state != SYN_SENT) && (pcb->state != SYN_RCVD)) {
36 case SYN_RCVD:
D0085-add-lwip-log-tcp_rst-tcp_abandon-tcp_abort.patch166 + ("tcp_process: incorrect ACK number in SYN_RCVD, send RST, ackno=%d, lastack…
DCHANGELOG301 * tcp: fixed bug #50418: LWIP_EVENT_API: fix invalid calbacks for SYN_RCVD pcb
2608 * tcp.c: fixed bug #25467: Listen backlog is not reset on timeout in SYN_RCVD:
2610 in state SYN_RCVD is close.
/third_party/lwip/src/include/lwip/
Dtcpbase.h60 SYN_RCVD = 3, enumerator
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h176 #define TCP_EVENT_POLL(pcb,ret) do { if ((pcb)->state != SYN_RCVD) { …
182 #define TCP_EVENT_ERR(last_state,errf,arg,err) do { if (last_state != SYN_RCVD) { \
/third_party/lwip/src/core/
Dtcp_out.c325 (pcb->state != SYN_RCVD)) { in tcp_write_checks()
1065 if ((pcb->state != SYN_RCVD) || (pcb->flags & TF_WND_SCALE)) { in tcp_enqueue_flags()
1072 if ((pcb->state != SYN_RCVD) || (pcb->flags & TF_SACK)) { in tcp_enqueue_flags()
1080 if ((pcb->flags & TF_TIMESTAMP) || ((flags & TCP_SYN) && (pcb->state != SYN_RCVD))) { in tcp_enqueue_flags()
Dtcp.c323 if (pcb->state == SYN_RCVD) { in tcp_set_timer_tick_by_tcp_state()
573 case SYN_RCVD: in tcp_close_shutdown_fin()
699 case SYN_RCVD: in tcp_shutdown()
1540 if (pcb->state == SYN_RCVD) {
Dtcp_in.c703 npcb->state = SYN_RCVD;
867 if ((flags & TCP_SYN) && (pcb->state != SYN_SENT && pcb->state != SYN_RCVD)) {
957 case SYN_RCVD:
/third_party/NuttX/
DReleaseNotes5157 - TCP state machine: Move tcp connection into SYN_RCVD state after