diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2012-06-07 14:19:42 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2012-06-16 15:09:15 +0200 |
commit | ae243bee397102c51fbf9db440eca3b077e0e702 (patch) | |
tree | e2320f565fe03c500ed3356b82cc6fbed0a6fe81 /include/net | |
parent | 8c88f87cb27ad09086940bdd3e6955e5325ec89a (diff) | |
download | linux-ae243bee397102c51fbf9db440eca3b077e0e702.tar.gz linux-ae243bee397102c51fbf9db440eca3b077e0e702.tar.bz2 linux-ae243bee397102c51fbf9db440eca3b077e0e702.zip |
netfilter: ctnetlink: add CTA_HELP_INFO attribute
This attribute can be used to modify and to dump the internal
protocol information.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_conntrack_helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/netfilter/nf_conntrack_helper.h b/include/net/netfilter/nf_conntrack_helper.h index 061352f71a84..84b24c3a3834 100644 --- a/include/net/netfilter/nf_conntrack_helper.h +++ b/include/net/netfilter/nf_conntrack_helper.h @@ -39,6 +39,7 @@ struct nf_conntrack_helper { void (*destroy)(struct nf_conn *ct); + int (*from_nlattr)(struct nlattr *attr, struct nf_conn *ct); int (*to_nlattr)(struct sk_buff *skb, const struct nf_conn *ct); unsigned int expect_class_max; }; |