Searched refs:TCP_MSS (Results 1 – 13 of 13) sorted by relevance
899 #define TCP_WND (4 * TCP_MSS)931 #ifndef TCP_MSS932 #define TCP_MSS 536 macro960 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS - 1))/(TCP_MSS))1012 #define TCP_OVERSIZE TCP_MSS1066 #define PBUF_POOL_BUFSIZE LWIP_MEM_ALIGN_SIZE(TCP_MSS+40+PBUF_LINK_HLEN)
306 (((u32_t)TCP_MSS / 256) << 8) | \307 (TCP_MSS & 255))
46 #define TCP_MSS 1460 macro48 #define TCP_SND_BUF (4*TCP_MSS)
225 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()
714 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS; in tcp_connect()1219 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS; in tcp_alloc()
1526 pcb->mss = ((mss > TCP_MSS) || (mss == 0)) ? TCP_MSS : mss; in tcp_parseopt()
229 alloc = TCP_MSS; in tcp_pbuf_prealloc()
308 #define TCP_MSS 1460 macro
162 # define TCP_MSS 512 macro
49 const uint32_t TCP_MSS = 1400; // Maximum segment size variable840 std::min<size_t>(available, TCP_MSS - TCP_HEADER_SIZE); in SendTcp()
469 mssopt->mss = htons ( TCP_MSS ); in tcp_xmit()
738 * opt.h: Increased default value for TCP_MSS to 536, updated default739 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_BUF1892 TCP_MSS if that is smaller) as long as no MSS option is received from the1897 is now based on TCP_MSS instead of pcb->mss (on passive open now effectively1898 sending our configured TCP_MSS instead of the one received).1902 calculated based on the configured TCP_MSS, not on the MSS option received
770 if ((size > TCP_SND_BUF) || ((size / TCP_MSS) > TCP_SND_QUEUELEN)) { in lwip_send()