Home
last modified time | relevance | path

Searched refs:TCP_MAXRTX (Results 1 – 8 of 8) sorted by relevance

/third_party/lwip/
D0084-add-tcpslowtmr-log-and-tcpfasttmr-cnt.patch22 } 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…
D0059-fix-last_unsent-last_unacked.patch39 + if ((pcb->dataacks > GAZELLE_TCP_MAX_DATA_ACK_NUM) && (pcb->nrtx < (TCP_MAXRTX / 2…
Dlwip.spec259 - fix send failed due to pcb->nrtx > TCP_MAXRTX
/third_party/lwip/src/core/
Dinit.c163 #if (LWIP_TCP && ((TCP_MAXRTX > 12) || (TCP_SYNMAXRTX > 12)))
Dtcp.c351 (pcb->nrtx >= TCP_MAXRTX)) { in tcp_slow_tmr_tick()
1409 } else if (pcb->nrtx >= TCP_MAXRTX) {
1416 if (pcb->persist_probe >= TCP_MAXRTX) {
/third_party/lwip/src/include/lwip/
Dopt.h1245 #if !defined TCP_MAXRTX || defined __DOXYGEN__
1246 #define TCP_MAXRTX 12 macro
/third_party/lwip/test/unit/tcp/
Dtest_tcp.c1256 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()
/third_party/NuttX/
DReleaseNotes33258  * [#7535](https://github.com/apache/incubator-nuttx/pull/7535) net: tcp: Make TCP_MAXRTX and TCP_M…