summaryrefslogtreecommitdiffstats
path: root/include/set.h
diff options
context:
space:
mode:
authorCarlos Falgueras García <carlosfg@riseup.net>2016-06-27 19:05:22 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2016-07-01 16:23:53 +0200
commit352a74d4e93e3db7380197720eb1003365a5781d (patch)
treecc73d385310a63ee83592b8b8d7b15907026dc40 /include/set.h
parent5ad0e626492e835fff65369c93d1e571013129e9 (diff)
set: Add new attribute into 'set' to store user data
The new structure 'user' holds a pointer to user data and its length. The kernel must have the flag NFTA_SET_USERDATA to support this feature. Signed-off-by: Carlos Falgueras García <carlosfg@riseup.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/set.h')
-rw-r--r--include/set.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/set.h b/include/set.h
index c3b96f2..85bd389 100644
--- a/include/set.h
+++ b/include/set.h
@@ -14,6 +14,10 @@ struct nftnl_set {
uint32_t key_len;
uint32_t data_type;
uint32_t data_len;
+ struct {
+ void *data;
+ uint32_t len;
+ } user;
uint32_t id;
enum nft_set_policies policy;
struct {