blob: f79e3133cbeae4ec600eb1b7b02b131be57b1d17 [file] [log] [blame]
Patrick McHardy58590342007-12-04 23:40:05 -08001#ifndef _XT_RATEEST_TARGET_H
2#define _XT_RATEEST_TARGET_H
3
4struct xt_rateest_target_info {
5 char name[IFNAMSIZ];
6 int8_t interval;
7 u_int8_t ewma_log;
Jan Engelhardt8b6f3f62008-01-14 23:33:14 -08008
9 /* Used internally by the kernel */
Patrick McHardy58590342007-12-04 23:40:05 -080010 struct xt_rateest *est __attribute__((aligned(8)));
11};
12
13#endif /* _XT_RATEEST_TARGET_H */