| 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 28 matching lines...) Expand all Loading... |
| 39 explicit FakeSSLClientSocket(scoped_ptr<net::StreamSocket> transport_socket); | 39 explicit FakeSSLClientSocket(scoped_ptr<net::StreamSocket> transport_socket); |
| 40 | 40 |
| 41 virtual ~FakeSSLClientSocket(); | 41 virtual ~FakeSSLClientSocket(); |
| 42 | 42 |
| 43 // Exposed for testing. | 43 // Exposed for testing. |
| 44 static base::StringPiece GetSslClientHello(); | 44 static base::StringPiece GetSslClientHello(); |
| 45 static base::StringPiece GetSslServerHello(); | 45 static base::StringPiece GetSslServerHello(); |
| 46 | 46 |
| 47 // net::StreamSocket implementation. | 47 // net::StreamSocket implementation. |
| 48 virtual int Read(net::IOBuffer* buf, int buf_len, | 48 virtual int Read(net::IOBuffer* buf, int buf_len, |
| 49 const net::CompletionCallback& callback) OVERRIDE; | 49 const net::CompletionCallback& callback) override; |
| 50 virtual int Write(net::IOBuffer* buf, int buf_len, | 50 virtual int Write(net::IOBuffer* buf, int buf_len, |
| 51 const net::CompletionCallback& callback) OVERRIDE; | 51 const net::CompletionCallback& callback) override; |
| 52 virtual int SetReceiveBufferSize(int32 size) OVERRIDE; | 52 virtual int SetReceiveBufferSize(int32 size) override; |
| 53 virtual int SetSendBufferSize(int32 size) OVERRIDE; | 53 virtual int SetSendBufferSize(int32 size) override; |
| 54 virtual int Connect(const net::CompletionCallback& callback) OVERRIDE; | 54 virtual int Connect(const net::CompletionCallback& callback) override; |
| 55 virtual void Disconnect() OVERRIDE; | 55 virtual void Disconnect() override; |
| 56 virtual bool IsConnected() const OVERRIDE; | 56 virtual bool IsConnected() const override; |
| 57 virtual bool IsConnectedAndIdle() const OVERRIDE; | 57 virtual bool IsConnectedAndIdle() const override; |
| 58 virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE; | 58 virtual int GetPeerAddress(net::IPEndPoint* address) const override; |
| 59 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE; | 59 virtual int GetLocalAddress(net::IPEndPoint* address) const override; |
| 60 virtual const net::BoundNetLog& NetLog() const OVERRIDE; | 60 virtual const net::BoundNetLog& NetLog() const override; |
| 61 virtual void SetSubresourceSpeculation() OVERRIDE; | 61 virtual void SetSubresourceSpeculation() override; |
| 62 virtual void SetOmniboxSpeculation() OVERRIDE; | 62 virtual void SetOmniboxSpeculation() override; |
| 63 virtual bool WasEverUsed() const OVERRIDE; | 63 virtual bool WasEverUsed() const override; |
| 64 virtual bool UsingTCPFastOpen() const OVERRIDE; | 64 virtual bool UsingTCPFastOpen() const override; |
| 65 virtual bool WasNpnNegotiated() const OVERRIDE; | 65 virtual bool WasNpnNegotiated() const override; |
| 66 virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE; | 66 virtual net::NextProto GetNegotiatedProtocol() const override; |
| 67 virtual bool GetSSLInfo(net::SSLInfo* ssl_info) OVERRIDE; | 67 virtual bool GetSSLInfo(net::SSLInfo* ssl_info) override; |
| 68 | 68 |
| 69 private: | 69 private: |
| 70 enum HandshakeState { | 70 enum HandshakeState { |
| 71 STATE_NONE, | 71 STATE_NONE, |
| 72 STATE_CONNECT, | 72 STATE_CONNECT, |
| 73 STATE_SEND_CLIENT_HELLO, | 73 STATE_SEND_CLIENT_HELLO, |
| 74 STATE_VERIFY_SERVER_HELLO, | 74 STATE_VERIFY_SERVER_HELLO, |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 int DoHandshakeLoop(); | 77 int DoHandshakeLoop(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 102 // The callback passed to Connect(). | 102 // The callback passed to Connect(). |
| 103 net::CompletionCallback user_connect_callback_; | 103 net::CompletionCallback user_connect_callback_; |
| 104 | 104 |
| 105 scoped_refptr<net::DrainableIOBuffer> write_buf_; | 105 scoped_refptr<net::DrainableIOBuffer> write_buf_; |
| 106 scoped_refptr<net::DrainableIOBuffer> read_buf_; | 106 scoped_refptr<net::DrainableIOBuffer> read_buf_; |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 } // namespace jingle_glue | 109 } // namespace jingle_glue |
| 110 | 110 |
| 111 #endif // JINGLE_GLUE_FAKE_SSL_CLIENT_SOCKET_H_ | 111 #endif // JINGLE_GLUE_FAKE_SSL_CLIENT_SOCKET_H_ |
| OLD | NEW |