From 3691279e8a0bf48d042b002cbb1a5f11cc3b8ea9 Mon Sep 17 00:00:00 2001 From: Brian West Date: Wed, 6 Aug 2014 08:52:21 -0500 Subject: [PATCH] FS-6727 allow 1.1 and 1.2, They should probably fix that soon --- src/mod/endpoints/mod_verto/mod_verto.c | 2 -- src/mod/endpoints/mod_verto/ws.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index 28b3da528b..ef167b6ba3 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -156,8 +156,6 @@ static void verto_init_ssl(verto_profile_t *profile) SSL_CTX_set_options(profile->ssl_ctx, SSL_OP_NO_SSLv3); /* Disable TLSv1 */ SSL_CTX_set_options(profile->ssl_ctx, SSL_OP_NO_TLSv1); - /* Disable TLSv1_1 */ - SSL_CTX_set_options(profile->ssl_ctx, SSL_OP_NO_TLSv1_1); /* Disable Compression CRIME (Compression Ratio Info-leak Made Easy) */ SSL_CTX_set_options(profile->ssl_ctx, SSL_OP_NO_COMPRESSION); diff --git a/src/mod/endpoints/mod_verto/ws.c b/src/mod/endpoints/mod_verto/ws.c index e9100e2977..2153855b08 100644 --- a/src/mod/endpoints/mod_verto/ws.c +++ b/src/mod/endpoints/mod_verto/ws.c @@ -102,8 +102,6 @@ void init_ssl(void) { SSL_CTX_set_options(globals.ssl_ctx, SSL_OP_NO_SSLv3); /* Disable TLSv1 */ SSL_CTX_set_options(globals.ssl_ctx, SSL_OP_NO_TLSv1); - /* Disable TLSv1_1 */ - SSL_CTX_set_options(globals.ssl_ctx, SSL_OP_NO_TLSv1_1); /* Disable Compression CRIME (Compression Ratio Info-leak Made Easy) */ SSL_CTX_set_options(globals.ssl_ctx, SSL_OP_NO_COMPRESSION); /* set the local certificate from CertFile */