Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(686)

Unified Diff: net/ssl/ssl_config.cc

Issue 2382983002: Remove the last of the TLS fallback code. (Closed)
Patch Set: mmenke comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/ssl/ssl_config.h ('k') | net/ssl/ssl_connection_status_flags.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/ssl_config.cc
diff --git a/net/ssl/ssl_config.cc b/net/ssl/ssl_config.cc
index b318251b9baca105e04958355f0ab5bb5d5fe31b..7a4f3373bb4933da34e2ec975691b04a9669c742 100644
--- a/net/ssl/ssl_config.cc
+++ b/net/ssl/ssl_config.cc
@@ -12,8 +12,6 @@ const uint16_t kDefaultSSLVersionMin = SSL_PROTOCOL_VERSION_TLS1;
const uint16_t kDefaultSSLVersionMax = SSL_PROTOCOL_VERSION_TLS1_2;
-const uint16_t kDefaultSSLVersionFallbackMin = SSL_PROTOCOL_VERSION_TLS1_2;
-
SSLConfig::CertAndStatus::CertAndStatus() = default;
SSLConfig::CertAndStatus::CertAndStatus(scoped_refptr<X509Certificate> cert_arg,
CertStatus status)
@@ -28,7 +26,6 @@ SSLConfig::SSLConfig()
sha1_local_anchors_enabled(false),
version_min(kDefaultSSLVersionMin),
version_max(kDefaultSSLVersionMax),
- version_fallback_min(kDefaultSSLVersionFallbackMin),
deprecated_cipher_suites_enabled(false),
dhe_enabled(false),
channel_id_enabled(true),
@@ -37,7 +34,6 @@ SSLConfig::SSLConfig()
require_ecdhe(false),
send_client_cert(false),
verify_ev_cert(false),
- version_fallback(false),
cert_io_enabled(true),
renego_allowed_default(false) {}
« no previous file with comments | « net/ssl/ssl_config.h ('k') | net/ssl/ssl_connection_status_flags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698