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

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_newreno.c180 /* Calculate initial cwnd according to RFC3390,
181 * - On a standard link, this will result in a higher cwnd
205 * connection is cwnd bound.
268 * (segsz^2 / cwnd per packet).
338 * (the minimum cwnd that will give us exponential
406 uint32_t cwnd = min(tp->snd_wnd, tp->snd_cwnd); local
408 cwnd = cwnd / tp->t_maxseg;
410 cwnd = cwnd /
[all...]
H A Dtcp_ledbat.c109 * cwnd = min(cwnd, max_allowed_cwnd)
116 * 'Tether' is also set to 2. We do not want this to limit the growth of cwnd
123 /* Left shift for cwnd to get tether value of 2 */
417 uint32_t cwnd; local
422 cwnd = min(tp->snd_wnd, tp->snd_cwnd);
425 cwnd = cwnd / tp->t_maxseg;
427 cwnd = cwnd /
[all...]

Completed in 29 milliseconds