Searched refs:TCP_SND_QUEUELEN (Results 1 – 8 of 8) sorted by relevance
157 #if (LWIP_TCP && (TCP_SND_QUEUELEN > 0xffff))160 #if (LWIP_TCP && (TCP_SND_QUEUELEN < 2))300 #if !MEMP_MEM_MALLOC && (MEMP_NUM_TCP_SEG < TCP_SND_QUEUELEN)306 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS))315 #if TCP_SNDQUEUELOWAT >= TCP_SND_QUEUELEN
345 if (pcb->snd_queuelen >= LWIP_MIN(TCP_SND_QUEUELEN, (TCP_SNDQUEUELEN_OVERFLOW + 1))) { in tcp_write_checks()347 pcb->snd_queuelen, (u16_t)TCP_SND_QUEUELEN)); in tcp_write_checks()671 if (queuelen > LWIP_MIN(TCP_SND_QUEUELEN, TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write()673 queuelen, (int)TCP_SND_QUEUELEN)); in tcp_write()
63 #define TCP_SND_QUEUELEN 40 macro64 #define MEMP_NUM_TCP_SEG TCP_SND_QUEUELEN
59 #define TCP_SND_QUEUELEN 40 macro60 #define MEMP_NUM_TCP_SEG TCP_SND_QUEUELEN
1321 #if !defined TCP_SND_QUEUELEN || defined __DOXYGEN__1322 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS)) macro1340 #define TCP_SNDQUEUELOWAT LWIP_MAX(((TCP_SND_QUEUELEN)/2), 5)
104 … ((tcp_sndbuf(tpcb) == 0) || (tcp_sndqueuelen(tpcb) >= TCP_SND_QUEUELEN)) \
559 (altcp_sndqueuelen(pcb) >= TCP_SND_QUEUELEN)) { in http_write()
1016 * tcp_out.c: fixed bug #43192 tcp_enqueue_flags() should not check TCP_SND_QUEUELEN1835 * dns.c: Fixed bug #31535: TCP_SND_QUEUELEN must be at least 2 or else