Home
last modified time | relevance | path

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

/xnu-8792.41.9/bsd/netinet/
H A Dtcp_cache.c79 uint32_t th_tfo_backoff; /* Current backoff timer */ member
744 tpheur->th_tfo_backoff = tcp_min_to_hz(tcp_ecn_timeout); in tcp_getheuristic_with_lock()
884 uint32_t old_backoff = tpheur->th_tfo_backoff; in __tcp_heuristic_tfo_middlebox_common()
886 tpheur->th_tfo_backoff -= (tcp_now - tpheur->th_tfo_enabled_time); in __tcp_heuristic_tfo_middlebox_common()
887 if (tpheur->th_tfo_backoff > old_backoff) { in __tcp_heuristic_tfo_middlebox_common()
888 tpheur->th_tfo_backoff = tcp_min_to_hz(tcp_ecn_timeout); in __tcp_heuristic_tfo_middlebox_common()
892 tpheur->th_tfo_backoff_until = tcp_now + tpheur->th_tfo_backoff; in __tcp_heuristic_tfo_middlebox_common()
895 tpheur->th_tfo_backoff *= 2; in __tcp_heuristic_tfo_middlebox_common()
897 if (tpheur->th_tfo_backoff > tcp_min_to_hz(tcp_backoff_maximum)) { in __tcp_heuristic_tfo_middlebox_common()
898 tpheur->th_tfo_backoff = tcp_min_to_hz(tcp_ecn_timeout); in __tcp_heuristic_tfo_middlebox_common()