diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-11-08 13:13:55 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-11-08 13:16:57 +0100 |
commit | 55c8a848d3ee160c2b4630180b62d534c2b70788 (patch) | |
tree | 59d205ce71f9c3a6e72dbecf63c33a64b30f4c46 /nDPId.c | |
parent | d80ea84d2ebebe29761f3727fbc5295ba3cb81b8 (diff) |
Fixed missing deflate during flow event json serializing.1.6rc3
* caused by recently added serializing some nDPI data even packet processing is still ongoing
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r-- | nDPId.c | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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) { |