Searched refs:cwnd (Results 1 - 2 of 2) sorted by relevance

/xnu-2782.1.97/bsd/netinet/
H A Dtcp_ledbat.c105 * cwnd = min(cwnd, max_allowed_cwnd)
112 * 'Tether' is also set to 2. We do not want this to limit the growth of cwnd
119 /* Left shift for cwnd to get tether value of 2 */
424 uint32_t cwnd; local
429 cwnd = min(tp->snd_wnd, tp->snd_cwnd);
432 cwnd = cwnd / tp->t_maxseg;
434 cwnd = cwnd /
[all...]
H A Dtcp_newreno.c152 * connection is cwnd bound.
215 * (segsz^2 / cwnd per packet).
289 * (the minimum cwnd that will give us exponential
338 uint32_t cwnd = min(tp->snd_wnd, tp->snd_cwnd); local
340 cwnd = cwnd / tp->t_maxseg;
342 cwnd = cwnd / 2 / tp->t_maxseg;
344 tp->snd_cwnd = max(TCP_CC_CWND_INIT_BYTES, cwnd * tp->t_maxseg);

Completed in 22 milliseconds