| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/base/ssl_config_service.h" | 5 #include "net/ssl/ssl_config_service.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/synchronization/lock.h" | 9 #include "base/synchronization/lock.h" |
| 10 #include "net/base/crl_set.h" | 10 #include "net/base/crl_set.h" |
| 11 #include "net/base/ssl_config_service_defaults.h" | 11 #include "net/ssl/ssl_config_service_defaults.h" |
| 12 | 12 |
| 13 #if defined(USE_OPENSSL) | 13 #if defined(USE_OPENSSL) |
| 14 #include <openssl/ssl.h> | 14 #include <openssl/ssl.h> |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 namespace net { | 17 namespace net { |
| 18 | 18 |
| 19 static uint16 g_default_version_min = SSL_PROTOCOL_VERSION_SSL3; | 19 static uint16 g_default_version_min = SSL_PROTOCOL_VERSION_SSL3; |
| 20 | 20 |
| 21 static uint16 g_default_version_max = | 21 static uint16 g_default_version_max = |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 bool SSLConfigService::IsSNIAvailable(SSLConfigService* service) { | 166 bool SSLConfigService::IsSNIAvailable(SSLConfigService* service) { |
| 167 if (!service) | 167 if (!service) |
| 168 return false; | 168 return false; |
| 169 | 169 |
| 170 SSLConfig ssl_config; | 170 SSLConfig ssl_config; |
| 171 service->GetSSLConfig(&ssl_config); | 171 service->GetSSLConfig(&ssl_config); |
| 172 return ssl_config.version_max >= SSL_PROTOCOL_VERSION_TLS1; | 172 return ssl_config.version_max >= SSL_PROTOCOL_VERSION_TLS1; |
| 173 } | 173 } |
| 174 | 174 |
| 175 } // namespace net | 175 } // namespace net |
| OLD | NEW |