Lines Matching refs:recv_win_max
1164 int32_t threshold = MIN(conn_mss(conn), conn->recv_win_max / 2); in tcp_short_window()
1175 int32_t threshold = MAX(conn_mss(conn), conn->recv_win_max / 2); in tcp_need_window_update()
1180 return (conn->recv_win == conn->recv_win_max && in tcp_need_window_update()
1202 } else if (new_win > conn->recv_win_max) { in tcp_update_recv_wnd()
1203 new_win = conn->recv_win_max; in tcp_update_recv_wnd()
2127 conn->recv_win_max = tcp_rx_window; in tcp_conn_alloc()
2128 conn->recv_win = conn->recv_win_max; in tcp_conn_alloc()
2129 conn->recv_win_sent = conn->recv_win_max; in tcp_conn_alloc()
2787 if (rcvbuf_opt > 0 && rcvbuf_opt != conn->recv_win_max) { in tcp_check_sock_options()
2792 diff = rcvbuf_opt - conn->recv_win_max; in tcp_check_sock_options()
2793 conn->recv_win_max = rcvbuf_opt; in tcp_check_sock_options()