From 1ac4f16fe99b6ded2415faf773bdd970561c4809 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Wed, 17 May 2017 15:28:09 +0100 Subject: [PATCH] tool: don't explicitly disable SSLv3 in the server Since SSLv3 is disabled by default now this is not needed anymore, but it makes enabling SSLv3 using -min-version impossible. At some point this should be removed anyway (when SSLv3 support is removed), so might as well do it now and fix this tiny problem. Change-Id: Ie3f7453b5b5198f33fcc4d4294102f116b8843ae Reviewed-on: https://boringssl-review.googlesource.com/16404 Reviewed-by: Adam Langley Commit-Queue: Adam Langley CQ-Verified: CQ bot account: commit-bot@chromium.org --- tool/server.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/tool/server.cc b/tool/server.cc index 48a11f29..53f9a9cb 100644 --- a/tool/server.cc +++ b/tool/server.cc @@ -152,7 +152,6 @@ bool Server(const std::vector &args) { } bssl::UniquePtr ctx(SSL_CTX_new(TLS_method())); - SSL_CTX_set_options(ctx.get(), SSL_OP_NO_SSLv3); // Server authentication is required. if (args_map.count("-key") != 0) {