Home
last modified time | relevance | path

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

/third_party/lwip/src/core/
Dtcp.c349 if (((pcb->state == SYN_SENT) && (pcb->nrtx >= TCP_SYNMAXRTX)) || in tcp_slow_tmr_tick()
351 (pcb->nrtx >= TCP_MAXRTX)) { in tcp_slow_tmr_tick()
1406 if (pcb->state == SYN_SENT && pcb->nrtx >= TCP_SYNMAXRTX) {
1409 } else if (pcb->nrtx >= TCP_MAXRTX) {
1465 u8_t backoff_idx = LWIP_MIN(pcb->nrtx, sizeof(tcp_backoff) - 1);
Dtcp_out.c1704 if (pcb->nrtx < 0xFF) { in tcp_rexmit_rto_commit()
1705 ++pcb->nrtx; in tcp_rexmit_rto_commit()
1775 if (pcb->nrtx < 0xFF) { in tcp_rexmit()
1776 ++pcb->nrtx; in tcp_rexmit()
Dtcp_in.c932 pcb->nrtx = 0;
951 if (pcb->nrtx < TCP_SYNMAXRTX) {
1277 pcb->nrtx = 0;
/third_party/lwip/src/include/lwip/
Dtcp.h305 u8_t nrtx; /* number of retransmissions */ member
/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)