summaryrefslogtreecommitdiff
path: root/include/net/netfilter/nf_nat_masquerade.h
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2019-04-09 10:44:08 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2019-04-11 20:59:34 +0200
commit610a43149cabd0c7aa7bed19cbcf05a0249ab32a (patch)
treef2a62ab72875deafb91d2d49316b4d9a8789a329 /include/net/netfilter/nf_nat_masquerade.h
parentadf82accc5f526f1e812f1a8df7292fef7dad19a (diff)
netfilter: nf_nat_masquerade: unify ipv4/6 notifier registration
Only reason for having two different register functions was because of ipt_MASQUERADE and ip6t_MASQUERADE being two different modules. Previous patch merged those into xt_MASQUERADE, so we can merge this too. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net/netfilter/nf_nat_masquerade.h')
-rw-r--r--include/net/netfilter/nf_nat_masquerade.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/net/netfilter/nf_nat_masquerade.h b/include/net/netfilter/nf_nat_masquerade.h
index cafe71822a53..54a14d643c34 100644
--- a/include/net/netfilter/nf_nat_masquerade.h
+++ b/include/net/netfilter/nf_nat_masquerade.h
@@ -9,13 +9,11 @@ nf_nat_masquerade_ipv4(struct sk_buff *skb, unsigned int hooknum,
const struct nf_nat_range2 *range,
const struct net_device *out);
-int nf_nat_masquerade_ipv4_register_notifier(void);
-void nf_nat_masquerade_ipv4_unregister_notifier(void);
+int nf_nat_masquerade_inet_register_notifiers(void);
+void nf_nat_masquerade_inet_unregister_notifiers(void);
unsigned int
nf_nat_masquerade_ipv6(struct sk_buff *skb, const struct nf_nat_range2 *range,
const struct net_device *out);
-int nf_nat_masquerade_ipv6_register_notifier(void);
-void nf_nat_masquerade_ipv6_unregister_notifier(void);
#endif /*_NF_NAT_MASQUERADE_H_ */