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

/external/syslinux/core/lwip/src/include/
H A Dlwipopts.h48 #define TCP_SND_BUF (4*TCP_MSS) macro
/external/syslinux/core/lwip/src/core/
H A Dinit.c225 if (TCP_SND_BUF < 2 * TCP_MSS)
226 LWIP_PLATFORM_DIAG(("lwip_sanity_check: WARNING: TCP_SND_BUF must be at least as much as (2 * TCP_MSS) for things to work smoothly\n"));
227 if (TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF/TCP_MSS)))
228 LWIP_PLATFORM_DIAG(("lwip_sanity_check: WARNING: TCP_SND_QUEUELEN must be at least as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work\n"));
229 if (TCP_SNDLOWAT >= TCP_SND_BUF)
230 LWIP_PLATFORM_DIAG(("lwip_sanity_check: WARNING: TCP_SNDLOWAT must be less than TCP_SND_BUF.\n"));
H A Dtcp.c1211 pcb->snd_buf = TCP_SND_BUF;
/external/syslinux/core/lwip/src/include/lwip/
H A Dopt.h949 * TCP_SND_BUF: TCP sender buffer space (bytes).
951 #ifndef TCP_SND_BUF
952 #define TCP_SND_BUF 256 macro
957 * as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work.
960 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
965 * TCP_SND_BUF. It is the amount of space which must be available in the
969 #define TCP_SNDLOWAT ((TCP_SND_BUF)/2)
/external/syslinux/core/lwip/src/api/
H A Dsockets.c770 if ((size > TCP_SND_BUF) || ((size / TCP_MSS) > TCP_SND_QUEUELEN)) {

Completed in 126 milliseconds