root/include/uapi/linux/netfilter/xt_quota.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


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

/* [<][>][^][v][top][bottom][index][help] */