Home | History | Annotate | Download | only in netinet

Lines Matching refs:snd_ssthresh

439 	tp->snd_ssthresh = win * tp->t_segsz;
441 tp->snd_cwnd = tp->snd_ssthresh;
496 tp->snd_cwnd = tp->snd_ssthresh + tp->t_segsz * tp->t_dupacks;
554 tp->snd_ssthresh = win * tp->t_segsz;
578 if (tp->snd_cwnd > tp->snd_ssthresh)
579 tp->snd_cwnd = tp->snd_ssthresh;
606 if (cw >= tp->snd_ssthresh) {
637 if (cw >= tp->snd_ssthresh) {
755 * snd_ssthresh outstanding data. But in case we
759 if (SEQ_SUB(tp->snd_max, th->th_ack) < tp->snd_ssthresh)
763 tp->snd_cwnd = tp->snd_ssthresh;
931 if (tp->snd_cwnd > tp->snd_ssthresh && tp->t_partialacks < 0 &&