summaryrefslogtreecommitdiffstats
path: root/include/rule.h
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2012-12-09 14:25:27 +0100
committerPatrick McHardy <kaber@trash.net>2012-12-09 14:25:40 +0100
commitffc9966f7798eb6b0282cceaae5193326b5ae636 (patch)
tree4650f37476b5a4fe7d1262185d59ec8a00bc9598 /include/rule.h
parentc6766087f5f67a3bc625ea3bca43c380d1290cba (diff)
rules: change rule handle to 64 bit
Recent kernel versions are using 64 bit for the rule handle. Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/rule.h')
-rw-r--r--include/rule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rule.h b/include/rule.h
index 23171ffb..4a458d31 100644
--- a/include/rule.h
+++ b/include/rule.h
@@ -19,7 +19,7 @@ struct handle {
const char *table;
const char *chain;
const char *set;
- uint32_t handle;
+ uint64_t handle;
};
extern void handle_merge(struct handle *dst, const struct handle *src);