Home
last modified time | relevance | path

Searched refs:TCP_MSS (Results 1 – 13 of 13) sorted by relevance

/external/syslinux/core/lwip/src/include/lwip/
Dopt.h899 #define TCP_WND (4 * TCP_MSS)
931 #ifndef TCP_MSS
932 #define TCP_MSS 536 macro
960 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))
1012 #define TCP_OVERSIZE TCP_MSS
1066 #define PBUF_POOL_BUFSIZE LWIP_MEM_ALIGN_SIZE(TCP_MSS+40+PBUF_LINK_HLEN)
Dtcp_impl.h306 (((u32_t)TCP_MSS / 256) << 8) | \
307 (TCP_MSS & 255))
/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()
235 if (TCP_WND < TCP_MSS) in lwip_sanity_check()
Dtcp.c714 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS; in tcp_connect()
1219 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS; in tcp_alloc()
Dtcp_in.c1526 pcb->mss = ((mss > TCP_MSS) || (mss == 0)) ? TCP_MSS : mss; in tcp_parseopt()
Dtcp_out.c229 alloc = TCP_MSS; in tcp_pbuf_prealloc()
/external/syslinux/core/lwip/src/include/
Dlwipopts.h46 #define TCP_MSS 1460 macro
48 #define TCP_SND_BUF (4*TCP_MSS)
/external/syslinux/gpxe/src/include/gpxe/
Dtcp.h308 #define TCP_MSS 1460 macro
/external/iproute2/include/netinet/
Dtcp.h162 # define TCP_MSS 512 macro
/external/webrtc/webrtc/base/
Dvirtualsocketserver.cc49 const uint32_t TCP_MSS = 1400; // Maximum segment size variable
840 std::min<size_t>(available, TCP_MSS - TCP_HEADER_SIZE); in SendTcp()
/external/syslinux/gpxe/src/net/
Dtcp.c469 mssopt->mss = htons ( TCP_MSS ); in tcp_xmit()
/external/syslinux/core/lwip/
DCHANGELOG738 * opt.h: Increased default value for TCP_MSS to 536, updated default
739 value for TCP_WND to 4*TCP_MSS to keep delayed ACK working.
814 * opt.h, init.c: bug #26649: TCP fails when TCP_MSS > TCP_SND_BUF
1892 TCP_MSS if that is smaller) as long as no MSS option is received from the
1897 is now based on TCP_MSS instead of pcb->mss (on passive open now effectively
1898 sending our configured TCP_MSS instead of the one received).
1902 calculated based on the configured TCP_MSS, not on the MSS option received
/external/syslinux/core/lwip/src/api/
Dsockets.c770 if ((size > TCP_SND_BUF) || ((size / TCP_MSS) > TCP_SND_QUEUELEN)) { in lwip_send()