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

Unified Diff: net/socket/ssl_client_socket_openssl.h

Issue 994263002: Rewrite session cache in OpenSSL ports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use base::MRUCache (hah, that would have saved me some time...) Created 5 years, 9 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
Index: net/socket/ssl_client_socket_openssl.h
diff --git a/net/socket/ssl_client_socket_openssl.h b/net/socket/ssl_client_socket_openssl.h
index 6aaf1e16672d65dc753da56ded07c2e90f546a34..9481a337e8f9b4a63559ea36094060ca0393f8ef 100644
--- a/net/socket/ssl_client_socket_openssl.h
+++ b/net/socket/ssl_client_socket_openssl.h
@@ -296,11 +296,10 @@ class SSLClientSocketOpenSSL : public SSLClientSocket {
std::string channel_id_cert_;
// True if channel ID extension was negotiated.
bool channel_id_xtn_negotiated_;
- // True if InfoCallback has been run with result = SSL_CB_HANDSHAKE_DONE.
+ // True if the initial handshake has completed.
bool handshake_succeeded_;
- // True if MarkSSLSessionAsGood has been called for this socket's
- // SSL session.
- bool marked_session_as_good_;
+ // True if the initial handshake's certificate has been verified.
+ bool certificate_verified_;
Ryan Sleevi 2015/03/17 00:50:33 First blush review: This strikes me as a bad thing
davidben 2015/03/20 22:41:26 Acknowledged.
// The request handle for |channel_id_service_|.
ChannelIDService::RequestHandle channel_id_request_handle_;

Powered by Google App Engine
This is Rietveld 408576698