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

Unified Diff: net/base/ssl_client_socket_nss.h

Issue 115700: Remember the intermediate CA certs if the server sends them to us.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | « no previous file | net/base/ssl_client_socket_nss.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/ssl_client_socket_nss.h
===================================================================
--- net/base/ssl_client_socket_nss.h (revision 17158)
+++ net/base/ssl_client_socket_nss.h (working copy)
@@ -5,6 +5,11 @@
#ifndef NET_BASE_SSL_CLIENT_SOCKET_NSS_H_
#define NET_BASE_SSL_CLIENT_SOCKET_NSS_H_
+// Work around https://bugzilla.mozilla.org/show_bug.cgi?id=455424
+// until NSS 3.12.2 comes out and we update to it.
+#define Lock FOO_NSS_Lock
+#include <certt.h>
+#undef Lock
#include <nspr.h>
#include <nss.h>
#include <string>
@@ -90,6 +95,8 @@
// Set during handshake.
scoped_refptr<X509Certificate> server_cert_;
+ // Certificate chain.
+ CERTCertList* cert_list_;
bool completed_handshake_;
« no previous file with comments | « no previous file | net/base/ssl_client_socket_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698