Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dinit.c264 #if TCP_SND_BUF < (2 * TCP_MSS)
267 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS))
270 #if TCP_SNDLOWAT >= TCP_SND_BUF
Dtcp.c1309 pcb->snd_buf = TCP_SND_BUF; in tcp_alloc()
/lib/liblwip/src/include/lwip/
Dopt.h976 #ifndef TCP_SND_BUF
977 #define TCP_SND_BUF (2 * TCP_MSS) macro
985 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
994 …TCP_SNDLOWAT LWIP_MIN(LWIP_MAX(((TCP_SND_BUF)/2), (2 * TCP_MSS) + 1), (TCP_SND_…
/lib/liblwip/test/unit/
Dlwipopts.h44 #define TCP_SND_BUF (12 * TCP_MSS) macro
/lib/liblwip/test/unit/tcp/
Dtest_tcp.c14 #if TCP_SND_BUF <= TCP_WND
/lib/liblwip/
DCHANGELOG235 * opt.h: fixed default value of TCP_SND_BUF to not violate the sanity checks
1113 * opt.h, init.c: bug #26649: TCP fails when TCP_MSS > TCP_SND_BUF