summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2008-01-15 17:25:39 +0000
committerPatrick McHardy <kaber@trash.net>2008-01-15 17:25:39 +0000
commit2528258ddf066a5147394dc65cae3bde8e80e3c0 (patch)
tree6d8a2d990d9257e54853cb5fdf46dc455c512e12 /include
parent01444da4cb70417d2dc2643e2d48c70de7ff8e96 (diff)
Add RATEEST target extension
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter/xt_RATEEST.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/netfilter/xt_RATEEST.h b/include/linux/netfilter/xt_RATEEST.h
new file mode 100644
index 00000000..ed9665f1
--- /dev/null
+++ b/include/linux/netfilter/xt_RATEEST.h
@@ -0,0 +1,11 @@
+#ifndef _XT_RATEEST_TARGET_H
+#define _XT_RATEEST_TARGET_H
+
+struct xt_rateest_target_info {
+ char name[IFNAMSIZ];
+ signed char interval;
+ unsigned char ewma_log;
+ struct xt_rateest *est __attribute__((aligned(8)));
+};
+
+#endif /* _XT_RATEEST_TARGET_H */