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

Unified Diff: net/ssl/ssl_server_config.h

Issue 1474983003: Support for client certs in ssl_server_socket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
Index: net/ssl/ssl_server_config.h
diff --git a/net/ssl/ssl_server_config.h b/net/ssl/ssl_server_config.h
index 6e712fb88c2719e12f0cb5eef8a9b9f0cc1058a2..03e9ad88690a5ef4191b5634b6e725cbe81d3a0e 100644
--- a/net/ssl/ssl_server_config.h
+++ b/net/ssl/ssl_server_config.h
@@ -56,6 +56,11 @@ struct NET_EXPORT SSLServerConfig {
// Requires a client certificate for client authentication from the client.
// This doesn't currently enforce certificate validity.
bool require_client_cert;
+
+ // Provides the list of certificates whose names are to be included in the
+ // CertificateRequest handshake message. This member is only useful if
+ // certificates are allowed.
+ CertificateList client_cert_ca_list;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698