xt_RATEEST.h 285 字节
Newer Older
1 2 3 4 5 6 7
#ifndef _XT_RATEEST_TARGET_H
#define _XT_RATEEST_TARGET_H

struct xt_rateest_target_info {
	char			name[IFNAMSIZ];
	int8_t			interval;
	u_int8_t		ewma_log;
8 9

	/* Used internally by the kernel */
10 11 12 13
	struct xt_rateest	*est __attribute__((aligned(8)));
};

#endif /* _XT_RATEEST_TARGET_H */