Searched refs:recwin (Results 1 – 4 of 4) sorted by relevance
| /freebsd/sys/netinet/ |
| H A D | tcp_output.c | 190 uint32_t recwin, sendwin; in tcp_default_output() local 572 recwin = lmin(lmax(sbspace(&so->so_rcv), 0), in tcp_default_output() 655 if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) && in tcp_default_output() 666 adv = recwin; in tcp_default_output() 686 recwin <= (so->so_rcv.sb_hiwat / 8) || in tcp_default_output() 1275 recwin = 0; in tcp_default_output() 1277 if (recwin < (so->so_rcv.sb_hiwat / 4) && in tcp_default_output() 1278 recwin < tp->t_maxseg) in tcp_default_output() 1279 recwin = 0; in tcp_default_output() 1281 recwin < (tp->rcv_adv - tp->rcv_nxt)) in tcp_default_output() [all …]
|
| /freebsd/sys/netinet/tcp_stacks/ |
| H A D | tcp_rack.h | 342 uint32_t recwin; member
|
| H A D | bbr.c | 11767 bbr_window_update_needed(struct tcpcb *tp, struct socket *so, uint32_t recwin, int32_t maxseg) in bbr_window_update_needed() argument 11776 adv = recwin; in bbr_window_update_needed() 11798 recwin <= (so->so_rcv.sb_hiwat / 8) || in bbr_window_update_needed() 11819 uint32_t recwin, sendwin; in bbr_output_wtime() local 11919 recwin = lmin(lmax(sbspace(&so->so_rcv), 0), in bbr_output_wtime() 11921 if ((bbr_window_update_needed(tp, so, recwin, maxseg) == 0) && in bbr_output_wtime() 12599 recwin = lmin(lmax(sbspace(&so->so_rcv), 0), in bbr_output_wtime() 12665 if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) && in bbr_output_wtime() 12669 if (bbr_window_update_needed(tp, so, recwin, maxseg)) in bbr_output_wtime() 13351 if ((flags & TH_RST) || ((recwin < (so->so_rcv.sb_hiwat / 4) && in bbr_output_wtime() [all …]
|
| H A D | rack.c | 13987 rack->r_ctl.fsb.recwin = lmin(lmax(sbspace(&tptosocket(tp)->so_rcv), 0), in rack_init_fsb_block() 18498 th->th_win = htons((u_short)(rack->r_ctl.fsb.recwin >> tp->rcv_scale)); in rack_fast_rsm_output() 19066 th->th_win = htons((u_short)(rack->r_ctl.fsb.recwin >> tp->rcv_scale)); in rack_fast_output() 19553 uint32_t recwin; in rack_output() local 20580 recwin = lmin(lmax(sbspace(&so->so_rcv), 0), in rack_output() 20663 if (recwin > 0 && !(tp->t_flags & TF_NEEDSYN) && in rack_output() 20674 adv = recwin; in rack_output() 20696 recwin <= (int32_t)(so->so_rcv.sb_hiwat / 8) || in rack_output() 20766 rack->r_ctl.fsb.recwin = recwin; in rack_output() 21615 recwin = 0; in rack_output() [all …]
|