X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=apps%2Fs_server.c;h=d678e8e2579d5ed92575e80cd8f29e7c50fc1283;hp=82fe5a4b7449b32e691c48063b4f60b8c4d7113c;hb=db0f35dda18403accabe98e7780f3dfc516f49de;hpb=720b6cbe4a195fc5563be2334e8519a61b82eeef diff --git a/apps/s_server.c b/apps/s_server.c index 82fe5a4b74..d678e8e257 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -2785,6 +2785,9 @@ static void print_connection_info(SSL *con) BIO_printf(bio_s_out, "Reused session-id\n"); BIO_printf(bio_s_out, "Secure Renegotiation IS%s supported\n", SSL_get_secure_renegotiation_support(con) ? "" : " NOT"); + if ((SSL_get_options(con) & SSL_OP_NO_RENEGOTIATION)) + BIO_printf(bio_s_out, "Renegotiation is DISABLED\n"); + if (keymatexportlabel != NULL) { BIO_printf(bio_s_out, "Keying material exporter:\n"); BIO_printf(bio_s_out, " Label: '%s'\n", keymatexportlabel);