diff options
author | Patrick McHardy <kaber@trash.net> | 2008-01-15 17:25:39 +0000 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2008-01-15 17:25:39 +0000 |
commit | 2528258ddf066a5147394dc65cae3bde8e80e3c0 (patch) | |
tree | 6d8a2d990d9257e54853cb5fdf46dc455c512e12 /include/linux | |
parent | 01444da4cb70417d2dc2643e2d48c70de7ff8e96 (diff) |
Add RATEEST target extension
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/netfilter/xt_RATEEST.h | 11 |
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 */ |