Searched refs:TCP_SND_QUEUELEN (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/Network/
H A Dlwipopts.h47 #define TCP_SND_QUEUELEN 64 macro
76 #define MEMP_NUM_TCP_SEG (MEMP_NUM_TCP_PCB * TCP_SND_QUEUELEN / 2)
/vbox/src/VBox/NetworkServices/NAT/
H A Dlwipopts.h67 #define TCP_SND_QUEUELEN 128 macro
96 #define MEMP_NUM_TCP_SEG (MEMP_NUM_TCP_PCB * TCP_SND_QUEUELEN / 2)
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dinit.c121 #if (LWIP_TCP && (TCP_SND_QUEUELEN > 0xffff))
122 #error "If you want to use TCP, TCP_SND_QUEUELEN must fit in an u16_t, so, you have to reduce it in your lwipopts.h"
124 #if (LWIP_TCP && (TCP_SND_QUEUELEN < 2))
125 #error "TCP_SND_QUEUELEN must be at least 2 for no-copy TCP writes to work"
264 #if !MEMP_MEM_MALLOC && (MEMP_NUM_TCP_SEG < TCP_SND_QUEUELEN)
265 #error "lwip_sanity_check: WARNING: MEMP_NUM_TCP_SEG should be at least as big as TCP_SND_QUEUELEN. If you know what you are doing, define LWIP_DISABLE_TCP_SANITY_CHECKS to 1 to disable this error."
270 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS))
271 #error "lwip_sanity_check: WARNING: TCP_SND_QUEUELEN must be at least as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work. If you know what you are doing, define LWIP_DISABLE_TCP_SANITY_CHECKS to 1 to disable this error."
276 #if TCP_SNDQUEUELOWAT >= TCP_SND_QUEUELEN
277 #error "lwip_sanity_check: WARNING: TCP_SNDQUEUELOWAT must be less than TCP_SND_QUEUELEN
[all...]
H A Dtcp_out.c323 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) {
325 pcb->snd_queuelen, TCP_SND_QUEUELEN));
583 if ((queuelen > TCP_SND_QUEUELEN) || (queuelen > TCP_SNDQUEUELEN_OVERFLOW)) {
584 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_write: queue too long %"U16_F" (%"U16_F")\n", queuelen, TCP_SND_QUEUELEN));
738 if ((pcb->snd_queuelen >= TCP_SND_QUEUELEN) || (pcb->snd_queuelen > TCP_SNDQUEUELEN_OVERFLOW)) {
740 pcb->snd_queuelen, TCP_SND_QUEUELEN));
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dopt.h340 #ifndef TCP_SND_QUEUELEN
341 #define TCP_SND_QUEUELEN 4 * TCP_SND_BUF/TCP_MSS macro
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dopt.h996 * TCP_SND_QUEUELEN: TCP sender buffer space (pbufs). This must be at least
999 #ifndef TCP_SND_QUEUELEN
1000 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS)) macro
1014 * than TCP_SND_QUEUELEN. If the number of pbufs queued on a pcb drops below
1018 #define TCP_SNDQUEUELOWAT LWIP_MAX(((TCP_SND_QUEUELEN)/2), 5)
H A Dtcp_impl.h93 ((tcp_sndbuf(tpcb) == 0) || (tcp_sndqueuelen(tpcb) >= TCP_SND_QUEUELEN)) \
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dtcp_out.c150 if (queuelen >= TCP_SND_QUEUELEN) {
151 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 3, ("tcp_enqueue: too long queue %"U16_F" (max %"U16_F")\n", queuelen, TCP_SND_QUEUELEN));
253 if (queuelen > TCP_SND_QUEUELEN) {
254 LWIP_DEBUGF(TCP_OUTPUT_DEBUG | 2, ("tcp_enqueue: queue too long %"U16_F" (%"U16_F")\n", queuelen, TCP_SND_QUEUELEN));
/vbox/src/VBox/Devices/Network/lwip/vbox/include/
H A Dlwipopts.h45 #define TCP_SND_QUEUELEN 2*TCP_SND_BUF/TCP_MSS macro

Completed in 70 milliseconds