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

Side by Side Diff: net/socket/ssl_client_socket_nss.h

Issue 660144: Log a warning message if an SSL server does not support... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin. Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_
7 7
8 #include <certt.h> 8 #include <certt.h>
9 #include <keyt.h> 9 #include <keyt.h>
10 #include <nspr.h> 10 #include <nspr.h>
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); 55 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
56 virtual bool SetReceiveBufferSize(int32 size); 56 virtual bool SetReceiveBufferSize(int32 size);
57 virtual bool SetSendBufferSize(int32 size); 57 virtual bool SetSendBufferSize(int32 size);
58 58
59 private: 59 private:
60 // Initializes NSS SSL options. Returns a net error code. 60 // Initializes NSS SSL options. Returns a net error code.
61 int InitializeSSLOptions(); 61 int InitializeSSLOptions();
62 62
63 void InvalidateSessionIfBadCertificate(); 63 void InvalidateSessionIfBadCertificate();
64 X509Certificate* UpdateServerCert(); 64 X509Certificate* UpdateServerCert();
65 void CheckSecureRenegotiation() const;
65 void DoReadCallback(int result); 66 void DoReadCallback(int result);
66 void DoWriteCallback(int result); 67 void DoWriteCallback(int result);
67 void DoConnectCallback(int result); 68 void DoConnectCallback(int result);
68 void OnHandshakeIOComplete(int result); 69 void OnHandshakeIOComplete(int result);
69 void OnSendComplete(int result); 70 void OnSendComplete(int result);
70 void OnRecvComplete(int result); 71 void OnRecvComplete(int result);
71 72
72 int DoHandshakeLoop(int last_io_result); 73 int DoHandshakeLoop(int last_io_result);
73 int DoReadLoop(int result); 74 int DoReadLoop(int result);
74 int DoWriteLoop(int result); 75 int DoWriteLoop(int result);
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 // A CryptoAPI in-memory certificate store that we import server 160 // A CryptoAPI in-memory certificate store that we import server
160 // certificates into so that we can verify and display the certificates 161 // certificates into so that we can verify and display the certificates
161 // using CryptoAPI. 162 // using CryptoAPI.
162 static HCERTSTORE cert_store_; 163 static HCERTSTORE cert_store_;
163 #endif 164 #endif
164 }; 165 };
165 166
166 } // namespace net 167 } // namespace net
167 168
168 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_ 169 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_NSS_H_
OLDNEW
« no previous file with comments | « no previous file | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698