]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/netfilter/xt_quota.h
netfilter: xtables: avoid pointer to self
[mirror_ubuntu-bionic-kernel.git] / include / linux / netfilter / xt_quota.h
CommitLineData
62b77434
PM
1#ifndef _XT_QUOTA_H
2#define _XT_QUOTA_H
3
4enum xt_quota_flags {
5 XT_QUOTA_INVERT = 0x1,
6};
7#define XT_QUOTA_MASK 0x1
8
acc738fe
JE
9struct xt_quota_priv;
10
62b77434
PM
11struct xt_quota_info {
12 u_int32_t flags;
13 u_int32_t pad;
8b6f3f62
JE
14
15 /* Used internally by the kernel */
62b77434 16 aligned_u64 quota;
acc738fe 17 struct xt_quota_priv *master;
62b77434
PM
18};
19
20#endif /* _XT_QUOTA_H */