Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/netinet/
H A Dtcp_cache.c56 uint8_t th_tfo_req_loss; /* The number of times a SYN+cookie-req has been lost */ member
773 if (tpheur->th_tfo_req_loss >= TFO_MAX_COOKIE_LOSS) { in tcp_heuristic_reset_counters()
775 __func__, tpheur->th_tfo_req_loss, (unsigned long)VM_KERNEL_ADDRPERM(tpheur)); in tcp_heuristic_reset_counters()
777 tpheur->th_tfo_req_loss = 0; in tcp_heuristic_reset_counters()
925 if ((flags & TCPCACHE_F_TFO_REQ) && tpheur->th_tfo_req_loss < TCP_CACHE_OVERFLOW_PROTECT) { in tcp_heuristic_inc_counters()
926 tpheur->th_tfo_req_loss++; in tcp_heuristic_inc_counters()
928 if (tpheur->th_tfo_req_loss >= TFO_MAX_COOKIE_LOSS) { in tcp_heuristic_inc_counters()
1608 heur_data.th_tfo_req_loss = tpheur->th_tfo_req_loss;
H A Dtcp_cache.h63 uint8_t th_tfo_req_loss; /* The number of times a SYN+cookie-req has been lost */ member
/xnu-12377.1.9/tests/
H A Dtcp_cache_test.c163 T_LOG(" th_tfo_req_loss: %u", entry->th_tfo_req_loss);