Home | History | Annotate | Download | only in netfilter
      1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
      2 #ifndef _XT_RATEEST_TARGET_H
      3 #define _XT_RATEEST_TARGET_H
      4 
      5 #include <linux/types.h>
      6 #include <linux/if.h>
      7 
      8 struct xt_rateest_target_info {
      9 	char			name[IFNAMSIZ];
     10 	__s8			interval;
     11 	__u8		ewma_log;
     12 
     13 	/* Used internally by the kernel */
     14 	struct xt_rateest	*est __attribute__((aligned(8)));
     15 };
     16 
     17 #endif /* _XT_RATEEST_TARGET_H */
     18