Home | History | Annotate | Download | only in slirp

Lines Matching refs:snd_cwnd

507 			    tp->snd_cwnd >= tp->snd_wnd) {
1112 min(tp->snd_wnd, tp->snd_cwnd) / 2 /
1121 tp->snd_cwnd = tp->t_maxseg;
1123 tp->snd_cwnd = tp->snd_ssthresh +
1129 tp->snd_cwnd += tp->t_maxseg;
1143 tp->snd_cwnd > tp->snd_ssthresh)
1144 tp->snd_cwnd = tp->snd_ssthresh;
1189 register u_int cw = tp->snd_cwnd;
1194 tp->snd_cwnd = min(cw + incr, TCP_MAXWIN<<tp->snd_scale);
1713 tp->snd_cwnd = mss;