summaryrefslogtreecommitdiffstats
path: root/include/set_elem.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/set_elem.h')
-rw-r--r--include/set_elem.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/set_elem.h b/include/set_elem.h
new file mode 100644
index 0000000..467c1a0
--- /dev/null
+++ b/include/set_elem.h
@@ -0,0 +1,14 @@
+#ifndef _LIBNFTNL_SET_ELEM_INTERNAL_H_
+#define _LIBNFTNL_SET_ELEM_INTERNAL_H_
+
+#include <data_reg.h>
+
+struct nft_set_elem {
+ struct list_head head;
+ uint32_t set_elem_flags;
+ union nft_data_reg key;
+ union nft_data_reg data;
+ uint32_t flags;
+};
+
+#endif