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_quota.h (400B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_QUOTA_H
  3. #define _XT_QUOTA_H
  4. #include <linux/types.h>
  5. enum xt_quota_flags {
  6. XT_QUOTA_INVERT = 0x1,
  7. };
  8. #define XT_QUOTA_MASK 0x1
  9. struct xt_quota_priv;
  10. struct xt_quota_info {
  11. __u32 flags;
  12. __u32 pad;
  13. __aligned_u64 quota;
  14. /* Used internally by the kernel */
  15. struct xt_quota_priv *master;
  16. };
  17. #endif /* _XT_QUOTA_H */