Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/netinet/
H A Dtcp_cache.c97 uint32_t tc_mptcp_next_version_try; /* Time, until we try preferred version again */ member
361 tpcache->tc_mptcp_next_version_try = tcp_now; in tcp_getcache_with_lock()
555 TSTMP_GEQ(tcp_now, tpcache->tc_mptcp_next_version_try)) { in tcp_cache_get_mptcp_version()
608 if (TSTMP_GEQ(tcp_now, tpcache->tc_mptcp_next_version_try)) { in tcp_cache_update_mptcp_version()
609 tpcache->tc_mptcp_next_version_try = tcp_now + tcp_min_to_hz(mptcp_version_timeout); in tcp_cache_update_mptcp_version()
620 if (TSTMP_GEQ(tcp_now, tpcache->tc_mptcp_next_version_try)) { in tcp_cache_update_mptcp_version()
621 tpcache->tc_mptcp_next_version_try = tcp_now + tcp_min_to_hz(mptcp_version_timeout); in tcp_cache_update_mptcp_version()
1701 cache_data.tc_mptcp_next_version_try = tpcache->tc_mptcp_next_version_try;
H A Dtcp_cache.h101 uint32_t tc_mptcp_next_version_try; /* Time, until we try preferred version again */ member
/xnu-12377.1.9/tests/
H A Dtcp_cache_test.c105 T_LOG(" tc_mptcp_next_version_try: %u", entry->tc_mptcp_next_version_try);