blob: ec1b57047e03fc003e9204965bd565e1a06ca50f [file] [log] [blame]
Ben Cheng30692c62013-10-15 18:26:18 -07001#ifndef _XT_RATEEST_TARGET_H
2#define _XT_RATEEST_TARGET_H
3
4#include <linux/types.h>
Christopher Ferrisccfaccd2016-08-24 12:11:31 -07005#include <linux/if.h>
Ben Cheng30692c62013-10-15 18:26:18 -07006
7struct xt_rateest_target_info {
8 char name[IFNAMSIZ];
9 __s8 interval;
10 __u8 ewma_log;
11
12 /* Used internally by the kernel */
13 struct xt_rateest *est __attribute__((aligned(8)));
14};
15
16#endif /* _XT_RATEEST_TARGET_H */