Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: bce7f793daec3e65ec5c5705d2457b81fe7b5725 authored by Linus Torvalds on 13 July 2008, 21:51:29 UTC
Linux 2.6.26
Tip revision: bce7f79
xt_RATEEST.h
#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;

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

#endif /* _XT_RATEEST_TARGET_H */
back to top