Lines Matching defs:ssthresh
2475 uint32_t ssthresh;
2479 * Update the ssthresh always when the conditions below
2482 * ssthresh is only set if packet loss occurred on a session.
2484 ssthresh = tp->snd_ssthresh;
2485 if (ssthresh != 0 && ssthresh < so->so_snd.sb_hiwat / 2) {
2490 ssthresh = (ssthresh + tp->t_maxseg / 2) / tp->t_maxseg;
2491 if (ssthresh < 2)
2492 ssthresh = 2;
2493 ssthresh *= (tp->t_maxseg +
2504 ssthresh = 0;
2505 metrics.hc_ssthresh = ssthresh;
3514 * only in cwnd and ssthresh estimations.