Browse Source

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 <agl@google.com>
Commit-Queue: Adam Langley <agl@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
kris/onging/CECPQ3_patch15
Alessandro Ghedini 7 years ago
committed by CQ bot account: commit-bot@chromium.org
parent
commit
1ac4f16fe9
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      tool/server.cc

+ 0
- 1
tool/server.cc View File

@@ -152,7 +152,6 @@ bool Server(const std::vector<std::string> &args) {
} }


bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method())); bssl::UniquePtr<SSL_CTX> ctx(SSL_CTX_new(TLS_method()));
SSL_CTX_set_options(ctx.get(), SSL_OP_NO_SSLv3);


// Server authentication is required. // Server authentication is required.
if (args_map.count("-key") != 0) { if (args_map.count("-key") != 0) {


Loading…
Cancel
Save