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

Unified Diff: net/ssl/ssl_server_config.cc

Issue 1474983003: Support for client certs in ssl_server_socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits Created 4 years, 10 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_server_config.h ('k') | net/url_request/url_request_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/ssl_server_config.cc
diff --git a/net/ssl/ssl_server_config.cc b/net/ssl/ssl_server_config.cc
index 8b3e67f7f21e42ef21e56ac4a116c55bbff16e6a..f42393364720eb51f3cfa71928288bcfa0ac8194 100644
--- a/net/ssl/ssl_server_config.cc
+++ b/net/ssl/ssl_server_config.cc
@@ -13,7 +13,8 @@ SSLServerConfig::SSLServerConfig()
: version_min(kDefaultSSLVersionMin),
version_max(SSL_PROTOCOL_VERSION_TLS1_2),
require_ecdhe(false),
- require_client_cert(false) {}
+ client_cert_type(NO_CLIENT_CERT),
+ client_cert_verifier(nullptr) {}
SSLServerConfig::~SSLServerConfig() {}
« no previous file with comments | « net/ssl/ssl_server_config.h ('k') | net/url_request/url_request_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698