| /components/net/lwip/lwip-1.4.1/src/core/ |
| A D | init.c | 264 #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
|
| A D | tcp.c | 1309 pcb->snd_buf = TCP_SND_BUF; in tcp_alloc()
|
| /components/net/lwip/port/ |
| A D | lwipopts.h | 379 #define TCP_SND_BUF RT_LWIP_TCP_SND_BUF macro 381 #define TCP_SND_BUF (TCP_MSS * 2) macro 386 #define TCP_SND_QUEUELEN (4 * TCP_SND_BUF/TCP_MSS) 391 #define TCP_SNDLOWAT (TCP_SND_BUF/2)
|
| /components/net/lwip/lwip-2.1.2/src/core/ |
| A D | init.c | 299 #if TCP_SND_BUF < (2 * TCP_MSS) 302 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS)) 305 #if TCP_SNDLOWAT >= TCP_SND_BUF
|
| A D | tcp.c | 1892 pcb->snd_buf = TCP_SND_BUF; in tcp_alloc() 1913 pcb->ssthresh = TCP_SND_BUF; in tcp_alloc()
|
| /components/net/lwip/lwip-1.4.1/src/include/lwip/ |
| A D | opt.h | 976 #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_…
|
| /components/net/lwip/lwip-2.0.3/src/core/ |
| A D | init.c | 304 #if TCP_SND_BUF < (2 * TCP_MSS) 307 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS)) 310 #if TCP_SNDLOWAT >= TCP_SND_BUF
|
| A D | tcp.c | 1608 pcb->snd_buf = TCP_SND_BUF; in tcp_alloc() 1629 pcb->ssthresh = TCP_SND_BUF; in tcp_alloc()
|
| /components/net/lwip/lwip-1.4.1/test/unit/ |
| A D | lwipopts.h | 44 #define TCP_SND_BUF (12 * TCP_MSS) macro
|
| /components/net/lwip/lwip-2.0.3/test/unit/ |
| A D | lwipopts.h | 48 #define TCP_SND_BUF (12 * TCP_MSS) macro
|
| /components/net/lwip/lwip-2.0.3/test/fuzz/ |
| A D | lwipopts.h | 59 #define TCP_SND_BUF (12 * TCP_MSS) macro
|
| /components/net/lwip/lwip-2.1.2/test/fuzz/ |
| A D | lwipopts.h | 66 #define TCP_SND_BUF (12 * TCP_MSS) macro
|
| /components/net/lwip/lwip-2.1.2/test/unit/ |
| A D | lwipopts.h | 60 #define TCP_SND_BUF (12 * TCP_MSS) macro
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/ |
| A D | opt.h | 1203 #if !defined TCP_SND_BUF || defined __DOXYGEN__ 1204 #define TCP_SND_BUF (2 * TCP_MSS) macro 1212 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS)) 1221 …TCP_SNDLOWAT LWIP_MIN(LWIP_MAX(((TCP_SND_BUF)/2), (2 * TCP_MSS) + 1), (TCP_SND_…
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | opt.h | 1313 #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_…
|
| /components/net/lwip/lwip-1.4.1/test/unit/tcp/ |
| A D | test_tcp.c | 14 #if TCP_SND_BUF <= TCP_WND
|
| /components/net/lwip/lwip-2.1.2/test/unit/api/ |
| A D | test_sockets.c | 280 #define BUF_SZ (TCP_SND_BUF/4) in test_sockets_msgapi_tcp()
|
| /components/net/lwip/lwip-2.0.3/test/unit/tcp/ |
| A D | test_tcp.c | 15 #if TCP_SND_BUF <= TCP_WND
|
| /components/net/lwip/lwip-2.1.2/test/unit/tcp/ |
| A D | test_tcp.c | 15 #if TCP_SND_BUF <= TCP_WND
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 41 * tcp: Initialize ssthresh to TCP_SND_BUF (bug #50476) 1181 * opt.h: fixed default value of TCP_SND_BUF to not violate the sanity checks 2059 * opt.h, init.c: bug #26649: TCP fails when TCP_MSS > TCP_SND_BUF
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | CHANGELOG | 294 * 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
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | CHANGELOG | 225 * opt.h: fixed default value of TCP_SND_BUF to not violate the sanity checks 1103 * opt.h, init.c: bug #26649: TCP fails when TCP_MSS > TCP_SND_BUF
|