summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2011-03-06 16:56:53 +0100
committerJan Engelhardt <jengelh@medozas.de>2011-04-13 18:09:26 +0200
commit8b5bdea659f1fb86b3288a2568ab104a90b914e5 (patch)
tree07299935a97a080fd7ee9871df049889674c5a7d /include
parent7299fa4b615d7f7ee12cde444266f6b31f667f9f (diff)
libxtables: XTTYPE_UINT64 support
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'include')
-rw-r--r--include/xtables.h.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/xtables.h.in b/include/xtables.h.in
index 2fa59771..c361bdbd 100644
--- a/include/xtables.h.in
+++ b/include/xtables.h.in
@@ -56,6 +56,7 @@ enum xt_option_type {
XTTYPE_NONE,
XTTYPE_UINT8,
XTTYPE_UINT32,
+ XTTYPE_UINT64,
XTTYPE_UINT32RC,
XTTYPE_STRING,
XTTYPE_MARKMASK32,
@@ -115,6 +116,7 @@ struct xt_option_call {
union {
uint8_t u8;
uint32_t u32, u32_range[2];
+ uint64_t u64;
struct {
uint32_t mark, mask;
};