summaryrefslogtreecommitdiffstats
path: root/include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h
diff options
context:
space:
mode:
author/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org>2005-12-03 22:50:27 +0000
committer/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=pablo/emailAddress=pablo@netfilter.org>2005-12-03 22:50:27 +0000
commit25b2d74cebc9680dde4028f2f50aec396b29559e (patch)
tree30c9403c402cc6c4184e8546f1d2b876e84886df /include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h
parentade771be804b64a5d5a5aede5d1a6d4fe6e6a43b (diff)
o Fixed bugs in UDP and SCTP protocol handlers (parse_proto)
o Added the comparison infrastructure for layer-4 protocols o Added libnetfilter_conntrack_[tcp|udp|icmp|sctp].h that contains the protocol flags used by the comparison infrastructure o Added nfct_conntrack_compare to compare two conntracks based on flags o Killed nfct_event_netlink_handler o nfct_event_[conntrack|expect] requires ROOT privileges (reason: netlink multicast) o Bumped version to 0.29
Diffstat (limited to 'include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h')
-rw-r--r--include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h b/include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h
new file mode 100644
index 0000000..366bc9c
--- /dev/null
+++ b/include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h
@@ -0,0 +1,34 @@
+/*
+ * (C) 2005 by Pablo Neira Ayuso <pablo@eurodev.net>
+ *
+ * This software may be used and distributed according to the terms
+ * of the GNU General Public License, incorporated herein by reference.
+ */
+
+#ifndef _LIBNETFILTER_CONNTRACK_SCTP_H_
+#define _LIBNETFILTER_CONNTRACK_SCTP_H_
+
+enum sctp_flags {
+ SCTP_ORIG_SPORT_BIT = 0,
+ SCTP_ORIG_SPORT = (1 << SCTP_ORIG_SPORT_BIT),
+
+ SCTP_ORIG_DPORT_BIT = 1,
+ SCTP_ORIG_DPORT = (1 << SCTP_ORIG_DPORT_BIT),
+
+ SCTP_REPL_SPORT_BIT = 2,
+ SCTP_REPL_SPORT = (1 << SCTP_REPL_SPORT_BIT),
+
+ SCTP_REPL_DPORT_BIT = 3,
+ SCTP_REPL_DPORT = (1 << SCTP_REPL_DPORT_BIT),
+
+ SCTP_MASK_SPORT_BIT = 4,
+ SCTP_MASK_SPORT = (1 << SCTP_MASK_SPORT_BIT),
+
+ SCTP_MASK_DPORT_BIT = 5,
+ SCTP_MASK_DPORT = (1 << SCTP_MASK_DPORT_BIT),
+
+ SCTP_STATE_BIT = 6,
+ SCTP_STATE = (1 << SCTP_STATE_BIT)
+};
+
+#endif