Skip to content

Commit

Permalink
set default opt_pcap_dump_zip_rtp to lzo
Browse files Browse the repository at this point in the history
  • Loading branch information
rbucek committed Aug 10, 2015
1 parent e22c8e7 commit 17c1c18
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion voipmonitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,12 @@ int opt_pcap_dump_bufflength = 8192;
int opt_pcap_dump_asyncwrite = 1;
int opt_pcap_dump_asyncwrite_limit_new_thread = 80;
FileZipHandler::eTypeCompress opt_pcap_dump_zip_sip = FileZipHandler::compress_na;
FileZipHandler::eTypeCompress opt_pcap_dump_zip_rtp = FileZipHandler::gzip;
FileZipHandler::eTypeCompress opt_pcap_dump_zip_rtp =
#ifdef HAVE_LIBLZO
FileZipHandler::lzo;
#else
FileZipHandler::gzip;
#endif //HAVE_LIBLZO
int opt_pcap_dump_ziplevel_sip = Z_DEFAULT_COMPRESSION;
int opt_pcap_dump_ziplevel_rtp = 1;
int opt_pcap_dump_ziplevel_graph = 1;
Expand Down

0 comments on commit 17c1c18

Please sign in to comment.