summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
author/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2006-01-26 17:34:27 +0000
committer/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2006-01-26 17:34:27 +0000
commit38b2cc80d8268c8944a32036c023c381322ab5ff (patch)
tree64ccc693b8800a6bd3ccce5ed13efc121c473610 /include
parentd7b2a7e7ffb2b17e8f3cd40b4d297606e1a80b31 (diff)
- add IPFIX netfilter vendor specific fields for seq global/local
- use real value for netfilter ipfix vendor id
Diffstat (limited to 'include')
-rw-r--r--include/ulogd/ipfix_protocol.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/ulogd/ipfix_protocol.h b/include/ulogd/ipfix_protocol.h
index 5cb6086..2bf1c3e 100644
--- a/include/ulogd/ipfix_protocol.h
+++ b/include/ulogd/ipfix_protocol.h
@@ -5,7 +5,9 @@
* draft-ietf-ipfix-protocol-19.txt */
#define IPFIX_VENDOR_IETF 0x00000000
-#define IPFIX_VENDOR_NETFILTER 0x23424223
+
+/* defined in http://www.iana.org/assignments/enterprise-numbers */
+#define IPFIX_VENDOR_NETFILTER 21373 /* FIXME: htonl? */
/* Section 3.1 */
struct ipfix_msg_hdr {
@@ -222,6 +224,8 @@ enum {
IPFIX_NF_mark = 4, /* u_int32_t */
IPFIX_NF_hook = 5, /* u_int8_t */
IPFIX_NF_conntrack_id = 6, /* u_int32_t */
+ IPFIX_NF_seq_local = 7, /* u_int32_t */
+ IPFIX_NF_seq_global = 8, /* u_int32_t */
};
#endif