Searched refs:TCP_WND (Results 1 - 11 of 11) sorted by relevance
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ |
H A D | init.c | 118 #if (LWIP_TCP && (TCP_WND > 0xffff)) 119 #error "If you want to use TCP, TCP_WND must fit in an u16_t, so, you have to reduce it in your lwipopts.h" 282 #if !MEMP_MEM_MALLOC && (TCP_WND > (PBUF_POOL_SIZE * (PBUF_POOL_BUFSIZE - (PBUF_LINK_HLEN + PBUF_IP_HLEN + PBUF_TRANSPORT_HLEN)))) 283 #error "lwip_sanity_check: WARNING: TCP_WND is larger than space provided by PBUF_POOL_SIZE * (PBUF_POOL_BUFSIZE - protocol headers). 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 286 #error "lwip_sanity_check: WARNING: TCP_WND is smaller than MSS. If you know what you are doing, define LWIP_DISABLE_TCP_SANITY_CHECKS to 1 to disable this error."
|
H A D | tcp.c | 181 if ((pcb->refused_data != NULL) || (pcb->rcv_wnd != TCP_WND)) { 651 if (TCP_SEQ_GEQ(new_right_edge, pcb->rcv_ann_right_edge + LWIP_MIN((TCP_WND / 2), pcb->mss))) { 690 if (pcb->rcv_wnd > TCP_WND) { 691 pcb->rcv_wnd = TCP_WND; 697 * watermark is TCP_WND/4), then send an explicit update now. 706 len, pcb->rcv_wnd, TCP_WND - pcb->rcv_wnd)); 817 pcb->rcv_wnd = TCP_WND; 818 pcb->rcv_ann_wnd = TCP_WND; 820 pcb->snd_wnd = TCP_WND; 1186 if (pcb->rcv_wnd != TCP_WND) { [all...] |
H A D | tcp_out.c | 1228 tcphdr->wnd = PP_HTONS(TCP_WND);
|
H A D | tcp_in.c | 434 if (pcb->rcv_wnd != TCP_WND) {
|
/vbox/src/VBox/Devices/Network/ |
H A D | lwipopts.h | 34 #define TCP_WND 32768 macro
|
/vbox/src/VBox/NetworkServices/NAT/ |
H A D | lwipopts.h | 54 #define TCP_WND 32768 macro
|
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | opt.h | 309 #ifndef TCP_WND 310 #define TCP_WND 2048 macro
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | tcp.c | 339 if ((u32_t)pcb->rcv_wnd + len > TCP_WND) { 340 pcb->rcv_wnd = TCP_WND; 358 else if (pcb->flags & TF_ACK_DELAY && pcb->rcv_wnd >= TCP_WND/2) { 364 * above (currently TCP_WND/2) can be tuned to be more or less 370 len, pcb->rcv_wnd, TCP_WND - pcb->rcv_wnd)); 438 pcb->rcv_wnd = TCP_WND; 439 pcb->snd_wnd = TCP_WND; 832 pcb->rcv_wnd = TCP_WND;
|
H A D | tcp_out.c | 600 tcphdr->wnd = htons(TCP_WND);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | opt.h | 934 * TCP_WND: The size of a TCP window. This must be at least 937 #ifndef TCP_WND 938 #define TCP_WND (4 * TCP_MSS) macro 1083 #define TCP_WND_UPDATE_THRESHOLD (TCP_WND / 4)
|
/vbox/src/VBox/Devices/Network/lwip/vbox/include/ |
H A D | lwipopts.h | 33 #define TCP_WND 32768 macro
|
Completed in 140 milliseconds