From 7533cca286edee99db29eb1238653a2040738d3e Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Tue, 14 Apr 2009 10:35:27 +0200 Subject: src: add initial DCCP support This patch adds initial DCCP support for libnetfilter_conntrack. Signed-off-by: Pablo Neira Ayuso --- include/internal/object.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'include/internal') diff --git a/include/internal/object.h b/include/internal/object.h index f76bf98..1db6b36 100644 --- a/include/internal/object.h +++ b/include/internal/object.h @@ -53,6 +53,9 @@ union __nfct_l4_src { struct { u_int16_t port; } sctp; + struct { + u_int16_t port; + } dccp; }; union __nfct_l4_dst { @@ -70,6 +73,9 @@ union __nfct_l4_dst { struct { u_int16_t port; } sctp; + struct { + u_int16_t port; + } dccp; }; union __nfct_address { @@ -110,7 +116,9 @@ union __nfct_protoinfo { u_int8_t state; u_int32_t vtag[__DIR_MAX]; } sctp; - + struct { + u_int8_t state; + } dccp; }; struct __nfct_counters { -- cgit v1.2.3