From ab22385083fc8e52ba5115ce153dce796a6e3812 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sat, 30 Nov 2013 12:58:37 +0100 Subject: [PATCH] stream: minor clean up of TcpSession structure --- src/stream-tcp-private.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/stream-tcp-private.h b/src/stream-tcp-private.h index 79ed5577fb..f17f0bb4fd 100644 --- a/src/stream-tcp-private.h +++ b/src/stream-tcp-private.h @@ -206,6 +206,7 @@ typedef struct TcpSession_ { PoolThreadReserved res; uint8_t state; uint8_t queue_len; /**< length of queue list below */ + int8_t data_first_seen_dir; /* coccinelle: TcpSession:flags:STREAMTCP_FLAG */ uint16_t flags; TcpStream server; @@ -215,8 +216,6 @@ typedef struct TcpSession_ { struct StreamMsg_ *toclient_smsg_head; /**< list of stream msgs (for detection inspection) */ struct StreamMsg_ *toclient_smsg_tail; /**< list of stream msgs (for detection inspection) */ - int8_t data_first_seen_dir; - TcpStateQueue *queue; /**< list of SYN/ACK candidates */ } TcpSession;