This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / linux / netfilter / xt_quota.h
diff --git a/include/linux/netfilter/xt_quota.h b/include/linux/netfilter/xt_quota.h
new file mode 100644 (file)
index 0000000..acd7fd7
--- /dev/null
@@ -0,0 +1,16 @@
+#ifndef _XT_QUOTA_H
+#define _XT_QUOTA_H
+
+enum xt_quota_flags {
+       XT_QUOTA_INVERT         = 0x1,
+};
+#define XT_QUOTA_MASK          0x1
+
+struct xt_quota_info {
+       u_int32_t               flags;
+       u_int32_t               pad;
+       aligned_u64             quota;
+       struct xt_quota_info    *master;
+};
+
+#endif /* _XT_QUOTA_H */