diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:04:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:04:34 +0000 |
commit | 371c8a8bca2b6862226bc79c13d143e07c1d8fc3 (patch) | |
tree | 06c7dc8826596690422e79d5bde2f46c90492de3 /include/set.h | |
parent | Initial commit. (diff) | |
download | libnftnl-1fe8fc03c586f6102d68c1f2ea18b8eb463c89c8.tar.xz libnftnl-1fe8fc03c586f6102d68c1f2ea18b8eb463c89c8.zip |
Adding upstream version 1.2.6.upstream/1.2.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'include/set.h')
-rw-r--r-- | include/set.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/include/set.h b/include/set.h new file mode 100644 index 0000000..55018b6 --- /dev/null +++ b/include/set.h @@ -0,0 +1,44 @@ +#ifndef _LIBNFTNL_SET_INTERNAL_H_ +#define _LIBNFTNL_SET_INTERNAL_H_ + +#include <linux/netfilter/nf_tables.h> + +struct nftnl_set { + struct list_head head; + struct hlist_node hnode; + + uint32_t family; + uint32_t set_flags; + const char *table; + const char *name; + uint64_t handle; + uint32_t key_type; + uint32_t key_len; + uint32_t data_type; + uint32_t data_len; + uint32_t obj_type; + struct { + void *data; + uint32_t len; + } user; + uint32_t id; + enum nft_set_policies policy; + struct { + uint32_t size; + uint8_t field_len[NFT_REG32_COUNT]; + uint8_t field_count; + } desc; + struct list_head element_list; + + uint32_t flags; + uint32_t gc_interval; + uint64_t timeout; + struct list_head expr_list; +}; + +struct nftnl_set_list; +struct nftnl_expr; +int nftnl_set_lookup_id(struct nftnl_expr *e, struct nftnl_set_list *set_list, + uint32_t *set_id); + +#endif |