Home
last modified time | relevance | path

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

/third_party/lwip/src/include/lwip/
Dtcpbase.h62 FIN_WAIT_1 = 5, enumerator
70 #define TCP_STATE_IS_CLOSING(state) ((state) >= FIN_WAIT_1)
/third_party/lwip/
D0004-fix-error-of-deleting-conn-table-in-connect.patch29 + /* tcp_active_pcbs in FIN_WAIT_1,FIN_WAIT_2,CLOSING state will change pcb to tw_pcbs_list don't …
32 + if ((pcb->state != FIN_WAIT_1) && (pcb->state != FIN_WAIT_2) && (pcb->state != CLOSING)) {
D0010-fix-the-incomplete-release-of-the-conntable.patch70 - /* tcp_active_pcbs in FIN_WAIT_1,FIN_WAIT_2,CLOSING state will change pcb to tw_pcbs_list don't …
73 - if ((pcb->state != FIN_WAIT_1) && (pcb->state != FIN_WAIT_2) && (pcb->state != CLOSING)) {
D0022-notify-app-that-sock-state-changes-to-CLOSE_WAIT.patch43 case FIN_WAIT_1:
D0053-cleancode-improve-lwipopts.h-readability.patch1059 …("TCP connection closed: FIN_WAIT_1 %"U16_F" -> %"U16_F".\n", inseg.tcphdr->src, inseg.tcphdr->des…
D0002-adapt-lstack.patch2872 …("TCP connection closed: FIN_WAIT_1 %"U16_F" -> %"U16_F".\n", inseg.tcphdr->src, inseg.tcphdr->des…
/third_party/lwip/src/core/
Dtcp.c350 ((pcb->state == FIN_WAIT_1) || (pcb->state == CLOSING)) || in tcp_slow_tmr_tick()
578 pcb->state = FIN_WAIT_1; in tcp_close_shutdown_fin()
585 pcb->state = FIN_WAIT_1; in tcp_close_shutdown_fin()
Dtcp_in.c1023 case FIN_WAIT_1:
/third_party/lwip/src/api/
Dapi_msg.c994 ((tpcb->state == FIN_WAIT_1) ||