Update Server.py to fix SNI handling

Forgot to change ciphers->client_ciphers.
This commit is contained in:
elitest 2015-03-02 00:19:06 -06:00
parent c6f54605a7
commit 5e07fe08ea

View File

@ -299,7 +299,7 @@ class ConnectionHandler:
cert, key,
method=self.config.openssl_client_method,
options=self.config.openssl_client_options,
cipher_list=self.config.ciphers,
cipher_list=self.config.client_ciphers,
dhparams=self.config.certstore.dhparams,
chain_file=chain_file
)