set gzip compression to false by default

This commit is contained in:
orignal 2021-09-12 14:29:43 -04:00
parent e054c6e82c
commit f7f36568ef
2 changed files with 2 additions and 2 deletions

View file

@ -261,7 +261,7 @@ namespace stream
typedef std::function<void (std::shared_ptr<Stream>)> Acceptor;
StreamingDestination (std::shared_ptr<i2p::client::ClientDestination> owner, uint16_t localPort = 0, bool gzip = true);
StreamingDestination (std::shared_ptr<i2p::client::ClientDestination> owner, uint16_t localPort = 0, bool gzip = false);
~StreamingDestination ();
void Start ();