Lines Matching refs:so_snd
1439 snd_len = min(so->so_snd.sb_cc, tp->snd_wnd) - snd_off; in tcp_early_rexmt_check()
3827 sbdrop(&so->so_snd, acked); in tcp_input()
3828 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
3885 if ((so->so_snd.sb_cc) || (tp->t_flags & TF_ACKNOW)) { in tcp_input()
5001 if (so->so_snd.sb_cc) { in tcp_input()
5447 (so->so_snd.sb_cc - (tp->snd_max - tp->snd_una)) > 0) { in tcp_input()
5696 if (acked > so->so_snd.sb_cc) { in tcp_input()
5697 tp->snd_wnd -= so->so_snd.sb_cc; in tcp_input()
5698 sbdrop(&so->so_snd, (int)so->so_snd.sb_cc); in tcp_input()
5701 sbdrop(&so->so_snd, acked); in tcp_input()
5702 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
7242 if (bufsize < so->so_snd.sb_hiwat) in tcp_mss()
7244 bufsize = so->so_snd.sb_hiwat; in tcp_mss()
7249 (void)sbreserve(&so->so_snd, bufsize); in tcp_mss()