diff options
Diffstat (limited to 'src/tool/transport_common.cc')
-rw-r--r-- | src/tool/transport_common.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tool/transport_common.cc b/src/tool/transport_common.cc index 3f5e631..98f0f95 100644 --- a/src/tool/transport_common.cc +++ b/src/tool/transport_common.cc @@ -169,6 +169,8 @@ void PrintConnectionInfo(const SSL *ssl) { const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl); fprintf(stderr, " Version: %s\n", SSL_get_version(ssl)); + fprintf(stderr, " Resumed session: %s\n", + SSL_session_reused(ssl) ? "yes" : "no"); fprintf(stderr, " Cipher: %s\n", SSL_CIPHER_get_name(cipher)); fprintf(stderr, " Secure renegotiation: %s\n", SSL_get_secure_renegotiation_support(ssl) ? "yes" : "no"); |