Home
last modified time | relevance | path

Searched refs:ncwnd (Results 1 – 1 of 1) sorted by relevance

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_cubic.c543 u_int32_t total_rxt_size = 0, ncwnd; in tcp_cubic_post_fr() local
549 ncwnd = max(tp->t_pipeack, tp->t_lossflightsize); in tcp_cubic_post_fr()
550 if (total_rxt_size <= ncwnd) { in tcp_cubic_post_fr()
551 ncwnd = ncwnd - total_rxt_size; in tcp_cubic_post_fr()
558 ncwnd = min(ncwnd, (tp->t_maxseg << 6)); in tcp_cubic_post_fr()
559 ncwnd = ncwnd >> 1; in tcp_cubic_post_fr()
560 flight_size = max(ncwnd, flight_size); in tcp_cubic_post_fr()