Home
last modified time | relevance | path

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

/third_party/lwip/src/include/lwip/
Dtcp.h305 u8_t nrtx; /* number of retransmissions */ member
/third_party/lwip/src/core/
Dtcp_out.c1691 if (pcb->nrtx < 0xFF) { in tcp_rexmit_rto_commit()
1692 ++pcb->nrtx; in tcp_rexmit_rto_commit()
1762 if (pcb->nrtx < 0xFF) { in tcp_rexmit()
1763 ++pcb->nrtx; in tcp_rexmit()
Dtcp.c1228 if (pcb->state == SYN_SENT && pcb->nrtx >= TCP_SYNMAXRTX) { in tcp_slowtmr()
1231 } else if (pcb->nrtx >= TCP_MAXRTX) { in tcp_slowtmr()
1287 u8_t backoff_idx = LWIP_MIN(pcb->nrtx, sizeof(tcp_backoff) - 1); in tcp_slowtmr()
Dtcp_in.c897 pcb->nrtx = 0;
916 if (pcb->nrtx < TCP_SYNMAXRTX) {
1242 pcb->nrtx = 0;
/third_party/lwip/test/unit/tcp/
Dtest_tcp.c1233 EXPECT(pcb->nrtx == 1); in test_tcp_rto_timeout_impl()
1328 EXPECT(pcb->nrtx == 1); in test_tcp_rto_timeout_syn_sent_impl()
/third_party/lwip/
DCHANGELOG3327 * tcp_in.c: fix bug# 21535 (nrtx not reset correctly in SYN_SENT state)