Searched refs:TCP_SND_BUF (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dinit.c267 #if TCP_SND_BUF < (2 * TCP_MSS)
268 #error "lwip_sanity_check: WARNING: TCP_SND_BUF must be at least as much as (2 * TCP_MSS) for things to work smoothly. 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."
273 #if TCP_SNDLOWAT >= TCP_SND_BUF
274 #error "lwip_sanity_check: WARNING: TCP_SNDLOWAT must be less than TCP_SND_BUF. If you know what you are doing, define LWIP_DISABLE_TCP_SANITY_CHECKS to 1 to disable this error."
H A Dtcp.c1394 pcb->snd_buf = TCP_SND_BUF;
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dopt.h334 #ifndef TCP_SND_BUF
335 #define TCP_SND_BUF 256 macro
339 TCP_SND_BUF/TCP_MSS for things to work. */
341 #define TCP_SND_QUEUELEN 4 * TCP_SND_BUF/TCP_MSS
350 to TCP_SND_BUF. It is the amount of space which must be
353 #define TCP_SNDLOWAT TCP_SND_BUF/2
/vbox/src/VBox/Devices/Network/
H A Dlwipopts.h43 #define TCP_SND_BUF (32 * TCP_MSS) macro
46 TCP_SND_BUF/TCP_MSS for things to work. */
/vbox/src/VBox/NetworkServices/NAT/
H A Dlwipopts.h63 #define TCP_SND_BUF (32 * TCP_MSS) macro
66 TCP_SND_BUF/TCP_MSS for things to work. */
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dopt.h988 * TCP_SND_BUF: TCP sender buffer space (bytes).
991 #ifndef TCP_SND_BUF
992 #define TCP_SND_BUF (2 * TCP_MSS) macro
997 * as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work.
1000 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
1005 * TCP_SND_BUF. It is the amount of space which must be available in the
1009 #define TCP_SNDLOWAT LWIP_MIN(LWIP_MAX(((TCP_SND_BUF)/2), (2 * TCP_MSS) + 1), (TCP_SND_BUF) - 1)
/vbox/src/VBox/Devices/Network/lwip/vbox/include/
H A Dlwipopts.h42 #define TCP_SND_BUF 32768 macro
45 #define TCP_SND_QUEUELEN 2*TCP_SND_BUF/TCP_MSS
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dtcp.c830 pcb->snd_buf = TCP_SND_BUF;

Completed in 150 milliseconds