1#ifndef _XT_RATEEST_TARGET_H
2#define _XT_RATEEST_TARGET_H
3
4#include <linux/types.h>
5#include <linux/if.h>
6
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 */
17