Home
last modified time | relevance | path

Searched refs:nat_hook (Results 1 – 4 of 4) sorted by relevance

/linux/include/linux/
H A Dnetfilter.h404 const struct nf_nat_hook *nat_hook; in nf_nat_decode_session() local
407 nat_hook = rcu_dereference(nf_nat_hook); in nf_nat_decode_session()
408 if (nat_hook && nat_hook->decode_session) in nf_nat_decode_session()
409 nat_hook->decode_session(skb, fl); in nf_nat_decode_session()
/linux/net/netfilter/
H A Dnf_conntrack_core.c1730 const struct nf_nat_hook *nat_hook; in nf_conntrack_free() local
1732 nat_hook = rcu_dereference(nf_nat_hook); in nf_conntrack_free()
1733 if (nat_hook) in nf_conntrack_free()
1734 nat_hook->remove_nat_bysrc(ct); in nf_conntrack_free()
H A Dnf_conntrack_netlink.c1855 const struct nf_nat_hook *nat_hook; in ctnetlink_parse_nat_setup() local
1858 nat_hook = rcu_dereference(nf_nat_hook); in ctnetlink_parse_nat_setup()
1859 if (!nat_hook) { in ctnetlink_parse_nat_setup()
1870 nat_hook = rcu_dereference(nf_nat_hook); in ctnetlink_parse_nat_setup()
1871 if (nat_hook) in ctnetlink_parse_nat_setup()
1877 err = nat_hook->parse_nat_setup(ct, manip, attr); in ctnetlink_parse_nat_setup()
H A Dnf_nat_core.c1308 static const struct nf_nat_hook nat_hook = { variable
1341 RCU_INIT_POINTER(nf_nat_hook, &nat_hook); in nf_nat_init()