Wireshark-commits: [Wireshark-commits] master 47649d1: cql: add lz4 and snappy decompression
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=47649d1c7fb6ba48b805e19268a711404eb6908b
Submitter: Pascal Quantin (pascal.quantin@xxxxxxxxx)
Changed: branch: master
Repository: wireshark
Commits:
47649d1 by Benoît Canet (benoit@xxxxxxxxxxxx):
cql: add lz4 and snappy decompression
We do not use the STARTUP negotiation since a stream
can be captured in its middle but try to decompress
if the flag is present and fallback if it fails.
Change-Id: Iecbf49a45220b04be7808869c9884548eb1e7694
Signed-off-by: Benoît Canet <benoit@xxxxxxxxxxxx>
Reviewed-on: https://code.wireshark.org/review/17952
Reviewed-by: Pascal Quantin <pascal.quantin@xxxxxxxxx>
Actions performed:
from 5c42d8a debian: Override Lintian warning for missing wireshark-gtk man page
adds 47649d1 cql: add lz4 and snappy decompression
Summary of changes:
CMakeLists.txt | 18 +++++
CMakeOptions.txt | 2 +
acinclude.m4 | 160 ++++++++++++++++++++++++++++++++++++++++
cmake/modules/FindLZ4.cmake | 39 ++++++++++
cmake/modules/FindSNAPPY.cmake | 38 ++++++++++
cmakeconfig.h.in | 6 ++
configure.ac | 88 ++++++++++++++++++++++
epan/CMakeLists.txt | 14 ++--
epan/Makefile.am | 10 ++-
epan/dissectors/packet-cql.c | 148 ++++++++++++++++++++++++++++++++-----
epan/epan.c | 17 +++++
11 files changed, 512 insertions(+), 28 deletions(-)
create mode 100644 cmake/modules/FindLZ4.cmake
create mode 100644 cmake/modules/FindSNAPPY.cmake