Displaying 1 result from an estimated 1 matches for "ssl_proxy_get_last_error".
2013 Aug 14
1
Patch to log the cipher suite used for TLS
...const char *ssl_state =
ssl_proxy_is_handshaked(client->ssl_proxy) ?
- "TLS" : "TLS handshaking";
+ t_strdup_printf("TLS=<%s>", ssl_proxy_get_security_string(client->ssl_proxy)) :
+ "TLS handshaking";
const char *ssl_error =
ssl_proxy_get_last_error(client->ssl_proxy);