Home
last modified time | relevance | path

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

/freebsd/sys/netpfil/pf/
H A Dpf.c1197 V_pf_udpendpointhash = mallocarray(V_pf_udpendpointhashsize, in pf_initialize()
1199 if (V_pf_udpendpointhash == NULL) { in pf_initialize()
1204 V_pf_udpendpointhash = mallocarray(V_pf_udpendpointhashsize, in pf_initialize()
1209 for (i = 0, uh = V_pf_udpendpointhash; in pf_initialize()
1273 for (i = 0, uh = V_pf_udpendpointhash; in pf_cleanup()
1280 free(V_pf_udpendpointhash, M_PFHASH); in pf_cleanup()
1915 h0 = &V_pf_udpendpointhash[pf_hashudpendpoint(&mapping->endpoints[0])]; in pf_udp_mapping_insert()
1916 h1 = &V_pf_udpendpointhash[pf_hashudpendpoint(&mapping->endpoints[1])]; in pf_udp_mapping_insert()
1964 h0 = &V_pf_udpendpointhash[pf_hashudpendpoint(&mapping->endpoints[0])]; in pf_udp_mapping_release()
1969 h1 = &V_pf_udpendpointhash[pf_hashudpendpoint(&mapping->endpoints[1])]; in pf_udp_mapping_release()
[all …]
/freebsd/sys/net/
H A Dpfvar.h2177 #define V_pf_udpendpointhash VNET(pf_udpendpointhash) macro