diff options
author | Florian Westphal <fw@strlen.de> | 2017-03-08 16:48:43 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2017-03-13 13:42:00 +0100 |
commit | 84fba05511c8e0e1a6e6c8ec2c3c85616c39a8c1 (patch) | |
tree | f466214811e3a0002a7ca3e4b23a8f1d5c43f72f /include | |
parent | c1183db8853d14df390748aa6baa69734db151aa (diff) | |
download | linux-84fba05511c8e0e1a6e6c8ec2c3c85616c39a8c1.tar.gz linux-84fba05511c8e0e1a6e6c8ec2c3c85616c39a8c1.tar.bz2 linux-84fba05511c8e0e1a6e6c8ec2c3c85616c39a8c1.zip |
netfilter: provide nft_ctx in object init function
this is needed by the upcoming ct helper object type --
we'd like to be able use the table family (ip, ip6, inet) to figure
out which helper has to be requested.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/netfilter/nf_tables.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/netfilter/nf_tables.h b/include/net/netfilter/nf_tables.h index f0d46726d06e..49436849d7d7 100644 --- a/include/net/netfilter/nf_tables.h +++ b/include/net/netfilter/nf_tables.h @@ -1017,7 +1017,8 @@ struct nft_object_type { unsigned int maxattr; struct module *owner; const struct nla_policy *policy; - int (*init)(const struct nlattr * const tb[], + int (*init)(const struct nft_ctx *ctx, + const struct nlattr *const tb[], struct nft_object *obj); void (*destroy)(struct nft_object *obj); int (*dump)(struct sk_buff *skb, |