summaryrefslogtreecommitdiffstats
path: root/include/xtables.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'include/xtables.h.in')
-rw-r--r--include/xtables.h.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/xtables.h.in b/include/xtables.h.in
index c281fed7..91a6eaaa 100644
--- a/include/xtables.h.in
+++ b/include/xtables.h.in
@@ -47,9 +47,11 @@ struct in_addr;
/**
* %XTTYPE_NONE: option takes no argument
+ * %XTTYPE_UINT*: standard integer
*/
enum xt_option_type {
XTTYPE_NONE,
+ XTTYPE_UINT32,
};
/**
@@ -99,7 +101,7 @@ struct xt_option_call {
unsigned int xflags;
bool invert;
union {
- /* to be filled */
+ uint32_t u32;
} val;
};