Add permessage-deflate WebSocket support (RIPD-1409):

This also fixes a defect where the Server HTTP header was
incorrectly set in WebSocket Upgrade handshake responses.
This commit is contained in:
Vinnie Falco
2017-02-02 11:07:04 -05:00
committed by Edward Hennis
parent ce7e83f763
commit f6a0345831
5 changed files with 56 additions and 2 deletions

View File

@@ -830,6 +830,7 @@ to_Port(ParsedPort const& parsed, std::ostream& log)
p.ssl_cert = parsed.ssl_cert;
p.ssl_chain = parsed.ssl_chain;
p.ssl_ciphers = parsed.ssl_ciphers;
p.pmd_options = parsed.pmd_options;
return p;
}