summaryrefslogtreecommitdiff
path: root/nDPId.c
diff options
context:
space:
mode:
Diffstat (limited to 'nDPId.c')
-rw-r--r--nDPId.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/nDPId.c b/nDPId.c
index 16ef9230d..2ee694838 100644
--- a/nDPId.c
+++ b/nDPId.c
@@ -2744,7 +2744,21 @@ static void jsonize_flow_event(struct nDPId_reader_thread * const reader_thread,
}
else if (flow_ext->flow_basic.state == FS_INFO)
{
- struct nDPId_flow const * const flow = (struct nDPId_flow *)flow_ext;
+ struct nDPId_flow * const flow = (struct nDPId_flow *)flow_ext;
+
+#ifdef ENABLE_ZLIB
+ if (nDPId_options.enable_zlib_compression != 0 && flow->info.detection_data_compressed_size > 0)
+ {
+ workflow->current_compression_diff -= flow->info.detection_data_compressed_size;
+ int ret = detection_data_inflate(flow);
+ if (ret <= 0)
+ {
+ workflow->current_compression_diff += flow->info.detection_data_compressed_size;
+ logger(1, "zLib decompression failed with error code: %d", ret);
+ return;
+ }
+ }
+#endif
if (flow->info.detection_completed != 0)
{