Skip to content

Commit

Permalink
Make websocket permessage-deflate default to disabled since it causes…
Browse files Browse the repository at this point in the history
… problems with Chrome
  • Loading branch information
emfrias committed Mar 14, 2016
1 parent 0dca15c commit 622ff58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fc/network/http/websocket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace fc { namespace http {
public:
websocket_tls_server(const std::string& server_pem = std::string(),
const std::string& ssl_password = std::string(),
bool enable_permessage_deflate = true);
bool enable_permessage_deflate = false);
~websocket_tls_server();

void on_connection( const on_connection_handler& handler);
Expand Down

0 comments on commit 622ff58

Please sign in to comment.