• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
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
9struct xt_quota_priv;
10
11struct xt_quota_info {
12	__u32 flags;
13	__u32 pad;
14	aligned_u64 quota;
15
16	/* Used internally by the kernel */
17	struct xt_quota_priv	*master;
18};
19
20#endif /* _XT_QUOTA_H */
21