From: Patrick McHardy Date: Sun, 9 Dec 2012 13:25:27 +0000 (+0100) Subject: rules: change rule handle to 64 bit X-Git-Tag: v0.099~148 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffc9966f7798eb6b0282cceaae5193326b5ae636;p=thirdparty%2Fnftables.git rules: change rule handle to 64 bit Recent kernel versions are using 64 bit for the rule handle. Signed-off-by: Patrick McHardy --- 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);