Home
last modified time | relevance | path

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

/third_party/lwip/
D0040-add-huge-snd_buf.patch5 #if TCP_SNDLOWAT >= TCP_SND_BUF
6 …#error "lwip_sanity_check: WARNING: TCP_SNDLOWAT must be less than TCP_SND_BUF. If you know what y…
82 -#define TCP_SND_BUF (40 * TCP_MSS)
83 +#define TCP_SND_BUF (2500 * TCP_MSS)
D0042-expand-recv-win.patch35 #define TCP_SND_BUF (2500 * TCP_MSS)
D0075-adapt-read-write-for-rtc-mode.patch87 #if TCP_SNDLOWAT >= TCP_SND_BUF
88 …#error "lwip_sanity_check: WARNING: TCP_SNDLOWAT must be less than TCP_SND_BUF. If you know what y…
450 -#define TCP_SNDLOWAT (TCP_SND_BUF / 5)
D0024-refactor-pkt-read-send-performance.patch241 -#define TCP_SND_BUF (5 * TCP_MSS)
242 +#define TCP_SND_BUF (40 * TCP_MSS)
D0001-add-makefile.patch208 +#define TCP_SND_BUF (12 * TCP_MSS)
D0053-cleancode-improve-lwipopts.h-readability.patch1997 -#define TCP_SND_BUF (2500 * TCP_MSS)
2002 -#define TCP_SNDLOWAT (TCP_SND_BUF / 5)
2129 +#define TCP_SND_BUF (2500 * TCP_MSS)
2135 +#define TCP_SNDLOWAT (TCP_SND_BUF / 5)
D0002-adapt-lstack.patch4975 -#define TCP_SND_BUF (12 * TCP_MSS)
5058 +#define TCP_SND_BUF (5 * TCP_MSS)
5062 +#define TCP_SNDLOWAT (TCP_SND_BUF / 5)
DCHANGELOG294 * tcp: Initialize ssthresh to TCP_SND_BUF (bug #50476)
1434 * opt.h: fixed default value of TCP_SND_BUF to not violate the sanity checks
2312 * opt.h, init.c: bug #26649: TCP fails when TCP_MSS > TCP_SND_BUF
/third_party/lwip/src/core/
Dinit.c303 #if TCP_SND_BUF < (2 * TCP_MSS)
306 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS))
309 #if TCP_SNDLOWAT >= TCP_SND_BUF
Dtcp.c2070 pcb->snd_buf = TCP_SND_BUF;
2091 pcb->ssthresh = TCP_SND_BUF;
/third_party/lwip/src/include/lwip/
Dopt.h1313 #if !defined TCP_SND_BUF || defined __DOXYGEN__
1314 #define TCP_SND_BUF (2 * TCP_MSS) macro
1322 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
1331 …TCP_SNDLOWAT LWIP_MIN(LWIP_MAX(((TCP_SND_BUF)/2), (2 * TCP_MSS) + 1), (TCP_SND_…
/third_party/lwip/test/fuzz/
Dlwipopts.h66 #define TCP_SND_BUF (12 * TCP_MSS) macro
/third_party/lwip/test/unit/
Dlwipopts.h61 #define TCP_SND_BUF (12 * TCP_MSS) macro
/third_party/lwip/test/unit/api/
Dtest_sockets.c280 #define BUF_SZ (TCP_SND_BUF/4) in test_sockets_msgapi_tcp()
/third_party/lwip/test/unit/tcp/
Dtest_tcp.c15 #if TCP_SND_BUF <= TCP_WND