summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter_ipv4/ipt_ECN.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/linux/netfilter_ipv4/ipt_ECN.h b/include/linux/netfilter_ipv4/ipt_ECN.h
new file mode 100644
index 0000000..1a02de7
--- /dev/null
+++ b/include/linux/netfilter_ipv4/ipt_ECN.h
@@ -0,0 +1,25 @@
+/* Header file for iptables ipt_ECN target
+ *
+ * (C) 2002 by Harald Welte <laforge@gnumonks.org>
+ *
+ * This software is distributed under GNU GPL v2, 1991
+ *
+ * ipt_ECN.h,v 1.1 2002/02/17 21:30:16 laforge Exp
+*/
+#ifndef _IPT_DSCP_H
+#define _IPT_DSCP_H
+#include <linux/netfilter_ipv4/ipt_DSCP.h>
+
+#define IPT_ECN_MASK (~IPT_DSCP_MASK)
+
+enum ipt_ecn_operation {
+ IPT_ECN_OP_NONE = 0,
+ IPT_ECN_OP_REMOVE,
+};
+#define IPT_ECN_OP_MAX IPT_ECN_OP_REMOVE
+
+struct ipt_ECN_info {
+ enum ipt_ecn_operation operation;
+};
+
+#endif /* _IPT_ECN_H */