From eb1f5ce35834a162a74993dcb3554dae45d903d6 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 17 Dec 2013 20:56:58 +0100 Subject: [PATCH] stream: increase max StreamMsg data Increase from 4024 bytes to 4072 to make the whole structure 4096 again. --- src/stream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;