Lines Matching refs:so_snd
1526 snd_len = min(so->so_snd.sb_cc, tp->snd_wnd) - snd_off; in tcp_early_rexmt_check()
3299 sbdrop(&so->so_snd, acked); in tcp_input()
3300 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
3358 if ((so->so_snd.sb_cc) || (tp->t_flags & TF_ACKNOW)) { in tcp_input()
4831 if (so->so_snd.sb_cc) { in tcp_input()
5264 (so->so_snd.sb_cc - (tp->snd_max - tp->snd_una)) > 0) { in tcp_input()
5511 if (acked > so->so_snd.sb_cc) { in tcp_input()
5512 tp->snd_wnd -= so->so_snd.sb_cc; in tcp_input()
5513 sbdrop(&so->so_snd, (int)so->so_snd.sb_cc); in tcp_input()
5516 sbdrop(&so->so_snd, acked); in tcp_input()
5517 tcp_sbsnd_trim(&so->so_snd); in tcp_input()
7044 if (bufsize < so->so_snd.sb_hiwat) in tcp_mss()
7046 bufsize = so->so_snd.sb_hiwat; in tcp_mss()
7051 (void)sbreserve(&so->so_snd, bufsize); in tcp_mss()