Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/netinet/
H A Dtcp_cache.c58 uint8_t th_tfo_req_rst; /* The number of times a SYN+cookie-req has received a RST */ member
789 if (tpheur->th_tfo_req_rst >= TFO_MAX_COOKIE_LOSS) { in tcp_heuristic_reset_counters()
791 __func__, tpheur->th_tfo_req_rst, (unsigned long)VM_KERNEL_ADDRPERM(tpheur)); in tcp_heuristic_reset_counters()
793 tpheur->th_tfo_req_rst = 0; in tcp_heuristic_reset_counters()
941 if ((flags & TCPCACHE_F_TFO_REQ_RST) && tpheur->th_tfo_req_rst < TCP_CACHE_OVERFLOW_PROTECT) { in tcp_heuristic_inc_counters()
942 tpheur->th_tfo_req_rst++; in tcp_heuristic_inc_counters()
944 if (tpheur->th_tfo_req_rst >= TFO_MAX_COOKIE_LOSS) { in tcp_heuristic_inc_counters()
1610 heur_data.th_tfo_req_rst = tpheur->th_tfo_req_rst;
H A Dtcp_cache.h65 uint8_t th_tfo_req_rst; /* The number of times a SYN+cookie-req has received a RST */ member
/xnu-12377.1.9/tests/
H A Dtcp_cache_test.c167 T_LOG(" th_tfo_req_rst: %u", entry->th_tfo_req_rst);