Searched refs:TCP_MSS (Results 1 - 15 of 15) sorted by relevance
/vbox/src/VBox/Devices/Network/ |
H A D | lwipopts.h | 37 #define TCP_MSS 1460 macro 43 #define TCP_SND_BUF (32 * TCP_MSS) 46 TCP_SND_BUF/TCP_MSS for things to work. */ 102 Use default that is based on TCP_MSS and PBUF_LINK_HLEN. */
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | lwipopts.h | 57 #define TCP_MSS 1460 macro 63 #define TCP_SND_BUF (32 * TCP_MSS) 66 TCP_SND_BUF/TCP_MSS for things to work. */ 122 Use default that is based on TCP_MSS and PBUF_LINK_HLEN. */
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | opt.h | 935 * (2 * TCP_MSS) for things to work well 938 #define TCP_WND (4 * TCP_MSS) 964 * TCP_MSS: TCP Maximum segment size. (default is 536, a conservative default, 970 #ifndef TCP_MSS 971 #define TCP_MSS 536 macro 979 * Setting this to 1 enables code that checks TCP_MSS against the MTU of the 989 * To achieve good performance, this should be at least 2 * TCP_MSS. 992 #define TCP_SND_BUF (2 * TCP_MSS) 997 * as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work. 1000 #define TCP_SND_QUEUELEN ((4 * (TCP_SND_BUF) + (TCP_MSS [all...] |
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | init.c | 267 #if TCP_SND_BUF < (2 * TCP_MSS) 268 #error "lwip_sanity_check: WARNING: TCP_SND_BUF must be at least as much as (2 * TCP_MSS) for things to work smoothly. If you know what you are doing, define LWIP_DISABLE_TCP_SANITY_CHECKS to 1 to disable this error." 270 #if TCP_SND_QUEUELEN < (2 * (TCP_SND_BUF / TCP_MSS)) 271 #error "lwip_sanity_check: WARNING: TCP_SND_QUEUELEN must be at least as much as (2 * TCP_SND_BUF/TCP_MSS) for things to work. If you know what you are doing, define LWIP_DISABLE_TCP_SANITY_CHECKS to 1 to disable this error." 285 #if TCP_WND < TCP_MSS
|
H A D | tcp.c | 821 /* As initial send MSS, we use TCP_MSS but limit it to 536. 823 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS; 1400 /* As initial send MSS, we use TCP_MSS but limit it to 536. 1402 pcb->mss = (TCP_MSS > 536) ? 536 : TCP_MSS; 1707 * calculating the minimum of TCP_MSS and that netif's mtu (if set).
|
H A D | tcp_out.c | 1083 mss = tcp_eff_send_mss(TCP_MSS, &pcb->local_ip, &pcb->remote_ip, PCB_ISIPV6(pcb)); 1085 mss = TCP_MSS;
|
H A D | tcp_in.c | 1859 /* Limit the mss to the configured TCP_MSS and prevent division by zero */ 1860 pcb->mss = ((mss > TCP_MSS) || (mss == 0)) ? TCP_MSS : mss;
|
/vbox/src/VBox/Devices/Network/slirp/ |
H A D | tcp.h | 137 #define TCP_MSS (if_mtu - 80) macro
|
H A D | slirp_state.h | 339 #define tcp_mssdflt TCP_MSS
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | opt.h | 329 #ifndef TCP_MSS 330 #define TCP_MSS 128 /* A *very* conservative default. */ macro 339 TCP_SND_BUF/TCP_MSS for things to work. */ 341 #define TCP_SND_QUEUELEN 4 * TCP_SND_BUF/TCP_MSS
|
/vbox/src/VBox/Devices/Network/lwip/vbox/include/ |
H A D | lwipopts.h | 36 #define TCP_MSS 1400 macro 45 #define TCP_SND_QUEUELEN 2*TCP_SND_BUF/TCP_MSS
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | tcp.h | 303 #define TCP_MSS 1460 macro
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | tcp.c | 440 pcb->mss = TCP_MSS; 835 pcb->mss = TCP_MSS;
|
H A D | tcp_in.c | 1190 pcb->mss = mss > TCP_MSS? TCP_MSS: mss;
|
/vbox/src/VBox/Devices/PC/ipxe/src/net/ |
H A D | tcp.c | 543 mssopt->mss = htons ( TCP_MSS );
|
Completed in 82 milliseconds