Searched refs:tcp_wnd (Results 1 – 1 of 1) sorted by relevance
713 tcp_wnd = pcb->usr_rcv_wnd; in tcp_update_rcv_ann_wnd()717 tcp_wnd = (tcp_wnd < TCP_SMALL_WND ? tcp_wnd : TCP_SMALL_WND); in tcp_update_rcv_ann_wnd()719 tcp_wnd = (tcp_wnd > TCP_LARGE_WND ? tcp_wnd : TCP_LARGE_WND); in tcp_update_rcv_ann_wnd()786 tcp_wnd = pcb->usr_rcv_wnd; in tcp_recved()790 tcp_wnd = (tcp_wnd < TCP_SMALL_WND ? tcp_wnd : TCP_SMALL_WND); in tcp_recved()792 tcp_wnd = (tcp_wnd > TCP_LARGE_WND ? tcp_wnd : TCP_LARGE_WND); in tcp_recved()921 tcp_wnd = pcb->usr_rcv_wnd; in tcp_connect()925 tcp_wnd = (tcp_wnd < TCP_SMALL_WND ? tcp_wnd : TCP_SMALL_WND); in tcp_connect()927 tcp_wnd = (tcp_wnd > TCP_LARGE_WND ? tcp_wnd : TCP_LARGE_WND); in tcp_connect()931 pcb->snd_wnd = tcp_wnd; in tcp_connect()[all …]
Completed in 8 milliseconds