Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dinit.c118 #if (LWIP_TCP && (TCP_SND_QUEUELEN > 0xffff))
121 #if (LWIP_TCP && (TCP_SND_QUEUELEN < 2))
261 #if !MEMP_MEM_MALLOC && (MEMP_NUM_TCP_SEG < TCP_SND_QUEUELEN)
267 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS))
273 #if TCP_SNDQUEUELOWAT >= TCP_SND_QUEUELEN
Dtcp_out.c320 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write_checks()
322 pcb->snd_queuelen, TCP_SND_QUEUELEN)); in tcp_write_checks()
580 if ((queuelen > TCP_SND_QUEUELEN) || (queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write()
581 …OUTPUT_DEBUG | 2, ("tcp_write: queue too long %"U16_F" (%"U16_F")\n", queuelen, TCP_SND_QUEUELEN)); in tcp_write()
735 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_enqueue_flags()
737 pcb->snd_queuelen, TCP_SND_QUEUELEN)); in tcp_enqueue_flags()
/lib/liblwip/test/unit/
Dlwipopts.h42 #define TCP_SND_QUEUELEN 40 macro
43 #define MEMP_NUM_TCP_SEG TCP_SND_QUEUELEN
/lib/liblwip/src/include/lwip/
Dopt.h984 #ifndef TCP_SND_QUEUELEN
985 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS)) macro
1003 #define TCP_SNDQUEUELOWAT LWIP_MAX(((TCP_SND_QUEUELEN)/2), 5)
Dtcp_impl.h88 … ((tcp_sndbuf(tpcb) == 0) || (tcp_sndqueuelen(tpcb) >= TCP_SND_QUEUELEN)) \
/lib/liblwip/
DCHANGELOG636 * dns.c: Fixed bug #31535: TCP_SND_QUEUELEN must be at least 2 or else