commit | 5430200b8b9528861ec9759623107f407ba8c38f | [log] [tgz] |
---|---|---|
author | Dr. Stephen Henson <steve@openssl.org> | Tue Dec 08 13:42:08 2009 +0000 |
committer | Dr. Stephen Henson <steve@openssl.org> | Tue Dec 08 13:42:08 2009 +0000 |
tree | 13554bb74de1bacd69b49781c9f78a7966f49e18 | |
parent | 13f6d57b1ef964f2b9cbd8f68783884caef0e5cb [diff] [blame] |
Add ctrl and macro so we can determine if peer support secure renegotiation.
diff --git a/apps/s_client.c b/apps/s_client.c index 2f647b8..a52e728 100644 --- a/apps/s_client.c +++ b/apps/s_client.c
@@ -1730,6 +1730,8 @@ EVP_PKEY_bits(pktmp)); EVP_PKEY_free(pktmp); } + BIO_printf(bio, "Secure Renegotiation IS%s supported\n", + SSL_get_secure_renegotiation_support(s) ? "" : " NOT"); #ifndef OPENSSL_NO_COMP comp=SSL_get_current_compression(s); expansion=SSL_get_current_expansion(s);