Home
last modified time | relevance | path

Searched refs:SYN_SENT (Results 1 – 6 of 6) sorted by relevance

/third_party/lwip/src/include/lwip/
Dtcpbase.h59 SYN_SENT = 2, enumerator
/third_party/lwip/src/core/
Dtcp.c349 if (((pcb->state == SYN_SENT) && (pcb->nrtx >= TCP_SYNMAXRTX)) || in tcp_slow_tmr_tick()
555 case SYN_SENT: in tcp_close_shutdown()
1350 pcb->state = SYN_SENT;
1406 if (pcb->state == SYN_SENT && pcb->nrtx >= TCP_SYNMAXRTX) {
1464 if (pcb->state != SYN_SENT) {
Dtcp_in.c831 if (pcb->state == SYN_SENT) {
867 if ((flags & TCP_SYN) && (pcb->state != SYN_SENT && pcb->state != SYN_RCVD)) {
884 case SYN_SENT:
Dtcp_out.c324 (pcb->state != SYN_SENT) && in tcp_write_checks()
1369 if (pcb->state != SYN_SENT) { in tcp_output()
1383 if (pcb->state != SYN_SENT) { in tcp_output()
/third_party/lwip/test/unit/tcp/
Dtest_tcp.c1310 EXPECT_RET(pcb->state == SYN_SENT); in test_tcp_rto_timeout_syn_sent_impl()
/third_party/lwip/
DCHANGELOG1041 * tcp_out.c: fixed bug #37184 tcp_write problem for pcbs in the SYN_SENT state
3327 * tcp_in.c: fix bug# 21535 (nrtx not reset correctly in SYN_SENT state)
4054 * tcp.c: Increment pcb->snd_buf when ACK is received in SYN_SENT state.
4141 * Fixed TCP bug for SYN_SENT to ESTABLISHED state transition.