Searched refs:TCP_SND_QUEUELEN (Results 1 – 9 of 9) sorted by relevance
46 #define TCP_SND_QUEUELEN 40 macro47 #define MEMP_NUM_TCP_SEG TCP_SND_QUEUELEN
57 #define TCP_SND_QUEUELEN 40 macro58 #define MEMP_NUM_TCP_SEG TCP_SND_QUEUELEN
155 #if (LWIP_TCP && (TCP_SND_QUEUELEN > 0xffff))158 #if (LWIP_TCP && (TCP_SND_QUEUELEN < 2))298 #if !MEMP_MEM_MALLOC && (MEMP_NUM_TCP_SEG < TCP_SND_QUEUELEN)304 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS))313 #if TCP_SNDQUEUELOWAT >= TCP_SND_QUEUELEN
333 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write_checks()335 pcb->snd_queuelen, (u16_t)TCP_SND_QUEUELEN)); in tcp_write_checks()621 if ((queuelen > TCP_SND_QUEUELEN) || (queuelen > TCP_SNDQUEUELEN_OVERFLOW)) { in tcp_write()623 queuelen, (int)TCP_SND_QUEUELEN)); in tcp_write()798 if (((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) && in tcp_enqueue_flags()801 pcb->snd_queuelen, (u16_t)TCP_SND_QUEUELEN)); in tcp_enqueue_flags()
302 #define TCP_SND_QUEUELEN ((TCP_SND_BUF / TCP_MSS) * \ macro322 #define MEMP_NUM_PBUF ((TCP_SND_QUEUELEN - (TCP_SND_BUF / \338 #define MEMP_NUM_TCP_SEG ((TCP_SND_QUEUELEN / 2) * NR_TCPSOCK)
1234 #if !defined TCP_SND_QUEUELEN || defined __DOXYGEN__1235 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS)) macro1253 #define TCP_SNDQUEUELOWAT LWIP_MAX(((TCP_SND_QUEUELEN)/2), 5)
101 … ((tcp_sndbuf(tpcb) == 0) || (tcp_sndqueuelen(tpcb) >= TCP_SND_QUEUELEN)) \
545 (tcp_sndqueuelen(pcb) >= TCP_SND_QUEUELEN)) { in http_write()
721 * tcp_out.c: fixed bug #43192 tcp_enqueue_flags() should not check TCP_SND_QUEUELEN1540 * dns.c: Fixed bug #31535: TCP_SND_QUEUELEN must be at least 2 or else