1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef _XT_QUOTA_H
13#define _XT_QUOTA_H
14
15enum xt_quota_flags {
16 XT_QUOTA_INVERT = 0x1,
17};
18#define XT_QUOTA_MASK 0x1
19
20struct xt_quota_info {
21 u_int32_t flags;
22 u_int32_t pad;
23 aligned_u64 quota;
24 struct xt_quota_info *master;
25};
26
27#endif
28