diff options
author | Benoît Canet <benoit@scylladb.com> | 2016-09-26 16:25:11 +0200 |
---|---|---|
committer | Pascal Quantin <pascal.quantin@gmail.com> | 2016-10-17 18:28:45 +0000 |
commit | 47649d1c7fb6ba48b805e19268a711404eb6908b (patch) | |
tree | 603eea5969a564511df482a2d8d6a9525cfea74b /CMakeOptions.txt | |
parent | 5c42d8a24c863549166bc1d0875e87a07bedf53e (diff) | |
download | wireshark-47649d1c7fb6ba48b805e19268a711404eb6908b.tar.gz wireshark-47649d1c7fb6ba48b805e19268a711404eb6908b.tar.bz2 wireshark-47649d1c7fb6ba48b805e19268a711404eb6908b.zip |
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@scylladb.com>
Reviewed-on: https://code.wireshark.org/review/17952
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'CMakeOptions.txt')
-rw-r--r-- | CMakeOptions.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeOptions.txt b/CMakeOptions.txt index fa0d354e7d..00351ed49c 100644 --- a/CMakeOptions.txt +++ b/CMakeOptions.txt @@ -61,6 +61,8 @@ option(ENABLE_PCAP_NG_DEFAULT "Enable pcap-ng as default file format" ON) option(ENABLE_PORTAUDIO "Build with PortAudio support" ON) option(ENABLE_ZLIB "Build with zlib compression support" ON) +option(ENABLE_LZ4 "Build with LZ4 compression support" ON) +option(ENABLE_SNAPPY "Build with Snappy compression support" ON) option(ENABLE_LUA "Build with Lua dissector support" ON) option(ENABLE_SMI "Build with libsmi snmp support" ON) option(ENABLE_GNUTLS "Build with GNU TLS support" ON) |