Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/core/
Dinit.c105 #if (LWIP_TCP && (TCP_SND_QUEUELEN > 0xffff))
108 #if (LWIP_TCP && (TCP_SND_QUEUELEN < 2))
223 if (MEMP_NUM_TCP_SEG < TCP_SND_QUEUELEN) in lwip_sanity_check()
227 if (TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF/TCP_MSS))) in lwip_sanity_check()
231 if (TCP_SNDQUEUELOWAT >= TCP_SND_QUEUELEN) in lwip_sanity_check()
Dtcp_out.c317 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write_checks()
319 pcb->snd_queuelen, TCP_SND_QUEUELEN)); in tcp_write_checks()
575 if ((queuelen > TCP_SND_QUEUELEN) || (queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write()
576 …OUTPUT_DEBUG | 2, ("tcp_write: queue too long %"U16_F" (%"U16_F")\n", queuelen, TCP_SND_QUEUELEN)); in tcp_write()
728 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_enqueue_flags()
730 pcb->snd_queuelen, TCP_SND_QUEUELEN)); in tcp_enqueue_flags()
/external/syslinux/core/lwip/src/include/lwip/
Dopt.h959 #ifndef TCP_SND_QUEUELEN
960 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS)) macro
978 #define TCP_SNDQUEUELOWAT ((TCP_SND_QUEUELEN)/2)
/external/syslinux/core/lwip/src/api/
Dsockets.c770 if ((size > TCP_SND_BUF) || ((size / TCP_MSS) > TCP_SND_QUEUELEN)) { in lwip_send()
/external/syslinux/core/lwip/
DCHANGELOG337 * dns.c: Fixed bug #31535: TCP_SND_QUEUELEN must be at least 2 or else