Lines Matching refs:so_snd
1439 snd_len = min(so->so_snd.sb_cc, tp->snd_wnd) - snd_off; in tcp_early_rexmt_check()
3826 sbdrop(&so->so_snd, acked); in tcp_input()
3827 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
3884 if ((so->so_snd.sb_cc) || (tp->t_flags & TF_ACKNOW)) { in tcp_input()
5000 if (so->so_snd.sb_cc) { in tcp_input()
5438 (so->so_snd.sb_cc - (tp->snd_max - tp->snd_una)) > 0) { in tcp_input()
5687 if (acked > so->so_snd.sb_cc) { in tcp_input()
5688 tp->snd_wnd -= so->so_snd.sb_cc; in tcp_input()
5689 sbdrop(&so->so_snd, (int)so->so_snd.sb_cc); in tcp_input()
5692 sbdrop(&so->so_snd, acked); in tcp_input()
5693 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
7233 if (bufsize < so->so_snd.sb_hiwat) in tcp_mss()
7235 bufsize = so->so_snd.sb_hiwat; in tcp_mss()
7240 (void)sbreserve(&so->so_snd, bufsize); in tcp_mss()