logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

xt_RATEEST.h (390B)


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