Lines Matching refs:so_snd
1589 snd_len = min(so->so_snd.sb_cc, tp->snd_wnd) - snd_off; in tcp_early_rexmt_check()
3008 sbdrop(&so->so_snd, acked); in tcp_input()
3009 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
3065 if ((so->so_snd.sb_cc) || (tp->t_flags & TF_ACKNOW)) { in tcp_input()
4276 if (so->so_snd.sb_cc) { in tcp_input()
4696 (so->so_snd.sb_cc - (tp->snd_max - tp->snd_una)) > 0) { in tcp_input()
4877 if (acked > so->so_snd.sb_cc) { in tcp_input()
4878 tp->snd_wnd -= so->so_snd.sb_cc; in tcp_input()
4879 sbdrop(&so->so_snd, (int)so->so_snd.sb_cc); in tcp_input()
4882 sbdrop(&so->so_snd, acked); in tcp_input()
4883 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
6339 if (bufsize < so->so_snd.sb_hiwat) in tcp_mss()
6341 bufsize = so->so_snd.sb_hiwat; in tcp_mss()
6349 (void)sbreserve(&so->so_snd, bufsize); in tcp_mss()