Home
last modified time | relevance | path

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

/third_party/lwip/src/include/lwip/
Dtcpbase.h59 SYN_SENT = 2, enumerator
/third_party/lwip/src/core/
Dtcp.c397 case SYN_SENT: in tcp_close_shutdown()
1173 pcb->state = SYN_SENT; in tcp_connect()
1229 if (pcb->state == SYN_SENT && pcb->nrtx >= TCP_SYNMAXRTX) { in tcp_slowtmr()
1287 if (pcb->state != SYN_SENT) { in tcp_slowtmr()
Dtcp_in.c801 if (pcb->state == SYN_SENT) {
837 if ((flags & TCP_SYN) && (pcb->state != SYN_SENT && pcb->state != SYN_RCVD)) {
854 case SYN_SENT:
Dtcp_out.c312 (pcb->state != SYN_SENT) && in tcp_write_checks()
1357 if (pcb->state != SYN_SENT) { in tcp_output()
1371 if (pcb->state != SYN_SENT) { in tcp_output()
/third_party/libnl/lib/netfilter/
Dct_obj.c463 __ADD(TCP_CONNTRACK_SYN_SENT,SYN_SENT),
/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.