Searched refs:TCP_MAXRTX (Results 1 – 8 of 8) sorted by relevance
22 } else if (pcb->nrtx >= TCP_MAXRTX) {30 if (pcb->persist_probe >= TCP_MAXRTX) {32 …DEBUG | GAZELLE_DEBUG_SERIOUS, ("tcp_slowtmr: persist_probe is greater TCP_MAXRTX loac_port=%u, re…
39 + if ((pcb->dataacks > GAZELLE_TCP_MAX_DATA_ACK_NUM) && (pcb->nrtx < (TCP_MAXRTX / 2…
259 - fix send failed due to pcb->nrtx > TCP_MAXRTX
163 #if (LWIP_TCP && ((TCP_MAXRTX > 12) || (TCP_SYNMAXRTX > 12)))
351 (pcb->nrtx >= TCP_MAXRTX)) { in tcp_slow_tmr_tick()1409 } else if (pcb->nrtx >= TCP_MAXRTX) {1416 if (pcb->persist_probe >= TCP_MAXRTX) {
1245 #if !defined TCP_MAXRTX || defined __DOXYGEN__1246 #define TCP_MAXRTX 12 macro
1256 EXPECT(txcounters.num_tx_calls == TCP_MAXRTX); in test_tcp_rto_timeout_impl()1257 EXPECT(txcounters.num_tx_bytes == TCP_MAXRTX * (TCP_MSS + 40U)); in test_tcp_rto_timeout_impl()1481 EXPECT(txcounters.num_tx_calls == TCP_MAXRTX); in test_tcp_zwp_timeout_impl()1482 EXPECT(txcounters.num_tx_bytes == TCP_MAXRTX * (1 + 40U)); in test_tcp_zwp_timeout_impl()
33258 * [#7535](https://github.com/apache/incubator-nuttx/pull/7535) net: tcp: Make TCP_MAXRTX and TCP_M…