OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This StreamSocket implementation is to be used with servers that | 5 // This StreamSocket implementation is to be used with servers that |
6 // accept connections on port 443 but don't really use SSL. For | 6 // accept connections on port 443 but don't really use SSL. For |
7 // example, the Google Talk servers do this to bypass proxies. (The | 7 // example, the Google Talk servers do this to bypass proxies. (The |
8 // connection is upgraded to TLS as part of the XMPP negotiation, so | 8 // connection is upgraded to TLS as part of the XMPP negotiation, so |
9 // security is preserved.) A "fake" SSL handshake is done immediately | 9 // security is preserved.) A "fake" SSL handshake is done immediately |
10 // after connection to fool proxies into thinking that this is a real | 10 // after connection to fool proxies into thinking that this is a real |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "base/compiler_specific.h" | 22 #include "base/compiler_specific.h" |
23 #include "base/memory/ref_counted.h" | 23 #include "base/memory/ref_counted.h" |
24 #include "base/memory/scoped_ptr.h" | 24 #include "base/memory/scoped_ptr.h" |
25 #include "base/string_piece.h" | 25 #include "base/string_piece.h" |
26 #include "net/base/completion_callback.h" | 26 #include "net/base/completion_callback.h" |
27 #include "net/base/net_errors.h" | 27 #include "net/base/net_errors.h" |
28 #include "net/socket/stream_socket.h" | 28 #include "net/socket/stream_socket.h" |
29 | 29 |
30 namespace net { | 30 namespace net { |
31 class DrainableIOBuffer; | 31 class DrainableIOBuffer; |
| 32 class SSLInfo; |
32 } // namespace net | 33 } // namespace net |
33 | 34 |
34 namespace notifier { | 35 namespace notifier { |
35 | 36 |
36 class FakeSSLClientSocket : public net::StreamSocket { | 37 class FakeSSLClientSocket : public net::StreamSocket { |
37 public: | 38 public: |
38 // Takes ownership of |transport_socket|. | 39 // Takes ownership of |transport_socket|. |
39 explicit FakeSSLClientSocket(net::StreamSocket* transport_socket); | 40 explicit FakeSSLClientSocket(net::StreamSocket* transport_socket); |
40 | 41 |
41 virtual ~FakeSSLClientSocket(); | 42 virtual ~FakeSSLClientSocket(); |
(...skipping 15 matching lines...) Expand all Loading... |
57 virtual bool IsConnectedAndIdle() const OVERRIDE; | 58 virtual bool IsConnectedAndIdle() const OVERRIDE; |
58 virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE; | 59 virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE; |
59 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE; | 60 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE; |
60 virtual const net::BoundNetLog& NetLog() const OVERRIDE; | 61 virtual const net::BoundNetLog& NetLog() const OVERRIDE; |
61 virtual void SetSubresourceSpeculation() OVERRIDE; | 62 virtual void SetSubresourceSpeculation() OVERRIDE; |
62 virtual void SetOmniboxSpeculation() OVERRIDE; | 63 virtual void SetOmniboxSpeculation() OVERRIDE; |
63 virtual bool WasEverUsed() const OVERRIDE; | 64 virtual bool WasEverUsed() const OVERRIDE; |
64 virtual bool UsingTCPFastOpen() const OVERRIDE; | 65 virtual bool UsingTCPFastOpen() const OVERRIDE; |
65 virtual int64 NumBytesRead() const OVERRIDE; | 66 virtual int64 NumBytesRead() const OVERRIDE; |
66 virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE; | 67 virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE; |
| 68 virtual bool WasNpnNegotiated() const OVERRIDE; |
67 virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE; | 69 virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE; |
| 70 virtual bool GetSSLInfo(net::SSLInfo* ssl_info) OVERRIDE; |
68 | 71 |
69 private: | 72 private: |
70 enum HandshakeState { | 73 enum HandshakeState { |
71 STATE_NONE, | 74 STATE_NONE, |
72 STATE_CONNECT, | 75 STATE_CONNECT, |
73 STATE_SEND_CLIENT_HELLO, | 76 STATE_SEND_CLIENT_HELLO, |
74 STATE_VERIFY_SERVER_HELLO, | 77 STATE_VERIFY_SERVER_HELLO, |
75 }; | 78 }; |
76 | 79 |
77 int DoHandshakeLoop(); | 80 int DoHandshakeLoop(); |
(...skipping 24 matching lines...) Expand all Loading... |
102 // The callback passed to Connect(). | 105 // The callback passed to Connect(). |
103 net::CompletionCallback user_connect_callback_; | 106 net::CompletionCallback user_connect_callback_; |
104 | 107 |
105 scoped_refptr<net::DrainableIOBuffer> write_buf_; | 108 scoped_refptr<net::DrainableIOBuffer> write_buf_; |
106 scoped_refptr<net::DrainableIOBuffer> read_buf_; | 109 scoped_refptr<net::DrainableIOBuffer> read_buf_; |
107 }; | 110 }; |
108 | 111 |
109 } // namespace notifier | 112 } // namespace notifier |
110 | 113 |
111 #endif // JINGLE_NOTIFIER_BASE_FAKE_SSL_CLIENT_SOCKET_H_ | 114 #endif // JINGLE_NOTIFIER_BASE_FAKE_SSL_CLIENT_SOCKET_H_ |
OLD | NEW |