From 5f45b8effeef996f176a0f427b14ed61da10c6bf Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Fri, 19 Feb 2016 23:45:48 +1000 Subject: [PATCH] * match.h --- src/match.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/match.h b/src/match.h index 225ac6a..8f83452 100644 --- a/src/match.h +++ b/src/match.h @@ -3,10 +3,8 @@ typedef struct { struct f2b_match_t *next; - const char *ip; - size_t count; - time_t firstseen; - time_t lastseen; + char ip[40]; /* 8 x "ffff" + 7 x ":" + '\0' */ + time_t seen; } f2b_match_t; #endif /* F2B_MATCH_H_ */