From a93142d5f55db74ebd7d49be9bd88f7a499ded40 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 16 Feb 2011 01:22:25 +0100 Subject: libxtables: XTTYPE_UINT32 support Signed-off-by: Jan Engelhardt --- include/xtables.h.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include') 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; }; -- cgit v1.2.3