Home
last modified time | relevance | path

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

/freebsd/sys/netinet/
H A Dtcp_hostcache.c111 uint32_t hc_cwnd; /* congestion window */ member
401 hc_metrics_lite->hc_cwnd = atomic_load_32(&hc_entry->hc_cwnd); in tcp_hc_get()
576 if (hcml->hc_cwnd != 0) { in tcp_hc_update()
577 if (hc_entry->hc_cwnd == 0) in tcp_hc_update()
578 v = hcml->hc_cwnd; in tcp_hc_update()
580 v = ((uint64_t)hc_entry->hc_cwnd + in tcp_hc_update()
581 (uint64_t)hcml->hc_cwnd) / 2; in tcp_hc_update()
582 atomic_store_32(&hc_entry->hc_cwnd, v); in tcp_hc_update()
691 hc_entry->hc_cwnd, in sysctl_tcp_hc_list()
H A Dtcp_var.h898 uint32_t hc_cwnd; /* congestion window */ member
H A Dtcp_subr.c2509 metrics.hc_cwnd = tp->snd_cwnd; in tcp_discardcb()