network-openssl: if -ssl_ciphers is not passed to /SERVER, fallback to an explicit list of ciphersuites. Disable Compression and TLS session tickets in SSL contexts. Print the SSL server suite after the connection to the server has been established.

This commit is contained in:
Samuel Hoffman 2015-07-01 21:45:37 -04:00
commit 2b987b1ea7
3 changed files with 15 additions and 2 deletions

View file

@ -316,6 +316,10 @@ static void sig_server_connected(SERVER_REC *server)
printformat(server, NULL, MSGLEVEL_CLIENTNOTICE,
TXT_CONNECTION_ESTABLISHED, server->connrec->address);
if(server->connrec->use_ssl)
printtext(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
"Using ciphersuite %s", server->connrec->ssl_current_cipher);
}
static void sig_connect_failed(SERVER_REC *server, gchar *msg)