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

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

Issue 6930014: Rename ClientSocket to StreamSocket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/socket/ssl_client_socket_nss.h ('k') | net/socket/ssl_client_socket_openssl.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_OPENSSL_H_ 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 // Callback from the SSL layer to check which NPN protocol we are supporting 51 // Callback from the SSL layer to check which NPN protocol we are supporting
52 int SelectNextProtoCallback(unsigned char** out, unsigned char* outlen, 52 int SelectNextProtoCallback(unsigned char** out, unsigned char* outlen,
53 const unsigned char* in, unsigned int inlen); 53 const unsigned char* in, unsigned int inlen);
54 54
55 // SSLClientSocket methods: 55 // SSLClientSocket methods:
56 virtual void GetSSLInfo(SSLInfo* ssl_info); 56 virtual void GetSSLInfo(SSLInfo* ssl_info);
57 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info); 57 virtual void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info);
58 virtual NextProtoStatus GetNextProto(std::string* proto); 58 virtual NextProtoStatus GetNextProto(std::string* proto);
59 59
60 // ClientSocket methods: 60 // StreamSocket methods:
61 virtual int Connect(CompletionCallback* callback); 61 virtual int Connect(CompletionCallback* callback);
62 virtual void Disconnect(); 62 virtual void Disconnect();
63 virtual bool IsConnected() const; 63 virtual bool IsConnected() const;
64 virtual bool IsConnectedAndIdle() const; 64 virtual bool IsConnectedAndIdle() const;
65 virtual int GetPeerAddress(AddressList* address) const; 65 virtual int GetPeerAddress(AddressList* address) const;
66 virtual int GetLocalAddress(IPEndPoint* address) const; 66 virtual int GetLocalAddress(IPEndPoint* address) const;
67 virtual const BoundNetLog& NetLog() const; 67 virtual const BoundNetLog& NetLog() const;
68 virtual void SetSubresourceSpeculation(); 68 virtual void SetSubresourceSpeculation();
69 virtual void SetOmniboxSpeculation(); 69 virtual void SetOmniboxSpeculation();
70 virtual bool WasEverUsed() const; 70 virtual bool WasEverUsed() const;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 }; 157 };
158 State next_handshake_state_; 158 State next_handshake_state_;
159 NextProtoStatus npn_status_; 159 NextProtoStatus npn_status_;
160 std::string npn_proto_; 160 std::string npn_proto_;
161 BoundNetLog net_log_; 161 BoundNetLog net_log_;
162 }; 162 };
163 163
164 } // namespace net 164 } // namespace net
165 165
166 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ 166 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_
OLDNEW
« no previous file with comments | « net/socket/ssl_client_socket_nss.h ('k') | net/socket/ssl_client_socket_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698