From 9d67451ca43b0a469f16d0d139e014b9a5fee33d Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Fri, 20 Feb 2009 18:33:52 +0100 Subject: headers: don't use NFCT_DIR_MAX in statistics structure This patch removes the use of NFCT_DIR_MAX. This constant is part of the old libnetfilter_conntrack API which has been removed from the git tree. It was introduced in the early days of conntrackd, thus, the use of this constant. Unfortunately, I did not notice until now. Signed-off-by: Pablo Neira Ayuso --- include/conntrackd.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/conntrackd.h b/include/conntrackd.h index 9b3cdf2..9615c2e 100644 --- a/include/conntrackd.h +++ b/include/conntrackd.h @@ -128,8 +128,10 @@ struct ct_general_state { /* statistics */ struct { - uint64_t bytes[NFCT_DIR_MAX]; - uint64_t packets[NFCT_DIR_MAX]; + uint64_t bytes_orig; + uint64_t bytes_repl; + uint64_t packets_orig; + uint64_t packets_repl; time_t daemon_start_time; -- cgit v1.2.3