summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2003-05-03 18:05:58 +0000
committerHarald Welte <laforge@gnumonks.org>2003-05-03 18:05:58 +0000
commit8f578a09b56f010d5bcd30086a8f7c8132b35d92 (patch)
tree284c7df42f086b689366c4934d324892293cf4e4 /include/linux
parent63aee026e08f9dd1a4b9d551a5b3f650a9d1ada7 (diff)
add (untested) sctp userspace support for even more untested kernel part (in pom soon)
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/netfilter_ipv4/ipt_sctp.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/linux/netfilter_ipv4/ipt_sctp.h b/include/linux/netfilter_ipv4/ipt_sctp.h
new file mode 100644
index 00000000..54c58fab
--- /dev/null
+++ b/include/linux/netfilter_ipv4/ipt_sctp.h
@@ -0,0 +1,25 @@
+/* iptables module for matching the SCTP header
+ *
+ * (C) 2003 Harald Welte <laforge@gnumonks.org>
+ *
+ * This software is distributed under GNU GPL v2, 1991
+ *
+ * $Id$
+ */
+#ifndef _IPT_SCTP_H
+#define _IPT_SCTP_H
+
+struct ipt_sctp_info {
+ u_int16_t spts[2]; /* Souce port range */
+ u_int16_t dpts[2]; /* Destination port range */
+ u_int32_t chunks; /* chunks to be matched */
+ u_int32_t chunk_mask; /* chunk mask to be matched */
+ u_int8_t invflags; /* Inverse flags */
+};
+
+#define IPT_SCTP_INV_SRCPT 0x01 /* Invert the sense of source ports */
+#define IPT_SCTP_INV_DSTPT 0x02 /* Invert the sense of dest ports */
+#define IPT_SCTP_INV_CHUNKS 0x03 /* Invert the sense of chunks */
+#define IPT_SCTP_INV_MASK 0x03 /* All possible flags */
+
+#endif /* _IPT_SCTP_H */