Home
last modified time | relevance | path

Searched refs:TCP_SND_BUF (Results 1 – 6 of 6) sorted by relevance

/external/syslinux/core/lwip/src/core/
Dinit.c225 if (TCP_SND_BUF < 2 * TCP_MSS) in lwip_sanity_check()
227 if (TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF/TCP_MSS))) in lwip_sanity_check()
229 if (TCP_SNDLOWAT >= TCP_SND_BUF) in lwip_sanity_check()
Dtcp.c1211 pcb->snd_buf = TCP_SND_BUF; in tcp_alloc()
/external/syslinux/core/lwip/src/include/lwip/
Dopt.h951 #ifndef TCP_SND_BUF
952 #define TCP_SND_BUF 256 macro
960 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
969 #define TCP_SNDLOWAT ((TCP_SND_BUF)/2)
/external/syslinux/core/lwip/src/include/
Dlwipopts.h48 #define TCP_SND_BUF (4*TCP_MSS) macro
/external/syslinux/core/lwip/src/api/
Dsockets.c770 if ((size > TCP_SND_BUF) || ((size / TCP_MSS) > TCP_SND_QUEUELEN)) { in lwip_send()
/external/syslinux/core/lwip/
DCHANGELOG814 * opt.h, init.c: bug #26649: TCP fails when TCP_MSS > TCP_SND_BUF