From 5fbcd3f99bca80fcada9345d5204349b28f988f7 Mon Sep 17 00:00:00 2001 From: "/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org" Date: Tue, 15 Jan 2008 13:52:59 +0000 Subject: Max Kellermann : import tcp_state_helper only once --- src/read_config_yy.y | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/read_config_yy.y b/src/read_config_yy.y index be484fe..317b45a 100644 --- a/src/read_config_yy.y +++ b/src/read_config_yy.y @@ -27,6 +27,8 @@ #include "ignore.h" #include +extern struct state_replication_helper tcp_state_helper; + extern char *yytext; extern int yylineno; @@ -471,47 +473,38 @@ state: tcp_state; tcp_state: T_SYN_SENT { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_SYN_SENT); }; tcp_state: T_SYN_RECV { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_SYN_RECV); }; tcp_state: T_ESTABLISHED { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_ESTABLISHED); }; tcp_state: T_FIN_WAIT { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_FIN_WAIT); }; tcp_state: T_CLOSE_WAIT { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_CLOSE_WAIT); }; tcp_state: T_LAST_ACK { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_LAST_ACK); }; tcp_state: T_TIME_WAIT { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_TIME_WAIT); }; tcp_state: T_CLOSE { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_CLOSE); }; tcp_state: T_LISTEN { - extern struct state_replication_helper tcp_state_helper; state_helper_register(&tcp_state_helper, TCP_CONNTRACK_LISTEN); }; -- cgit v1.2.3