diff options
Diffstat (limited to 'extensions/libct_proto_tcp.c')
| -rw-r--r-- | extensions/libct_proto_tcp.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/libct_proto_tcp.c b/extensions/libct_proto_tcp.c index 323e4ec..4f3094f 100644 --- a/extensions/libct_proto_tcp.c +++ b/extensions/libct_proto_tcp.c @@ -13,9 +13,10 @@  #include <string.h>  #include <netinet/in.h> /* For htons */  #include <linux/netfilter/nfnetlink_conntrack.h> -#include "libct_proto.h"  #include <libnfnetlink_conntrack/libnfnetlink_conntrack.h> +#include "libct_proto.h" +  static struct option opts[] = {  	{"orig-port-src", 1, 0, '1'},  	{"orig-port-dst", 1, 0, '2'}, @@ -197,7 +198,8 @@ static struct ctproto_handler tcp = {  	.print_protoinfo	= print_protoinfo,  	.final_check		= final_check,  	.help			= help, -	.opts			= opts +	.opts			= opts, +	.version		= LIBCT_VERSION,  };  void __attribute__ ((constructor)) init(void);  | 
