summaryrefslogtreecommitdiffstats
path: root/kernel/include/uapi/linux/netfilter/xt_set.h
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2013-04-09 17:14:19 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2013-04-09 21:42:16 +0200
commit488c1e17e6fb7b6924b9d31372b05dc457d54cf4 (patch)
tree951b55004de9fe7d5366d8306ff777fc10cfd9a7 /kernel/include/uapi/linux/netfilter/xt_set.h
parentbfd78374c8eb23d1f04e5f300a7f1c1b21716c7b (diff)
set match: add support to match the counters
The new revision of the set match supports to match the counters and to suppress updating the counters at matching too. At the set:list types, the updating of the subcounters can be suppressed as well. Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
Diffstat (limited to 'kernel/include/uapi/linux/netfilter/xt_set.h')
-rw-r--r--kernel/include/uapi/linux/netfilter/xt_set.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/include/uapi/linux/netfilter/xt_set.h b/kernel/include/uapi/linux/netfilter/xt_set.h
index e3a9978..964d3d4 100644
--- a/kernel/include/uapi/linux/netfilter/xt_set.h
+++ b/kernel/include/uapi/linux/netfilter/xt_set.h
@@ -62,4 +62,13 @@ struct xt_set_info_target_v2 {
__u32 timeout;
};
+/* Revision 3 match */
+
+struct xt_set_info_match_v3 {
+ struct xt_set_info match_set;
+ struct ip_set_counter_match packets;
+ struct ip_set_counter_match bytes;
+ __u32 flags;
+};
+
#endif /*_XT_SET_H*/