From: Victor Julien Date: Tue, 17 Dec 2013 19:56:58 +0000 (+0100) Subject: stream: increase max StreamMsg data X-Git-Tag: suricata-2.0rc1~213 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb1f5ce35834a162a74993dcb3554dae45d903d6;p=thirdparty%2Fsuricata.git stream: increase max StreamMsg data Increase from 4024 bytes to 4072 to make the whole structure 4096 again. --- diff --git a/src/stream.h b/src/stream.h index 2bdde69604..1e91f2d846 100644 --- a/src/stream.h +++ b/src/stream.h @@ -34,7 +34,7 @@ #define STREAM_DEPTH 0x20 /* depth reached */ /** size of the data chunks sent to the app layer parser. */ -#define MSG_DATA_SIZE 4024 /* 4096 - 72 (size of rest of the struct) */ +#define MSG_DATA_SIZE 4072 /* 4096 - 24 (size of rest of the struct) */ typedef struct StreamMsg_ { struct StreamMsg_ *next;