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

Side by Side Diff: jingle/glue/fake_ssl_client_socket.h

Issue 1821633003: net: remove UsingTCPFastOpen() method from StreamSocket class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove use_tcp_fastopen_ from transport_client_socket_pool_test_util.cc Created 4 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
OLDNEW
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 int Connect(const net::CompletionCallback& callback) override; 57 int Connect(const net::CompletionCallback& callback) override;
58 void Disconnect() override; 58 void Disconnect() override;
59 bool IsConnected() const override; 59 bool IsConnected() const override;
60 bool IsConnectedAndIdle() const override; 60 bool IsConnectedAndIdle() const override;
61 int GetPeerAddress(net::IPEndPoint* address) const override; 61 int GetPeerAddress(net::IPEndPoint* address) const override;
62 int GetLocalAddress(net::IPEndPoint* address) const override; 62 int GetLocalAddress(net::IPEndPoint* address) const override;
63 const net::BoundNetLog& NetLog() const override; 63 const net::BoundNetLog& NetLog() const override;
64 void SetSubresourceSpeculation() override; 64 void SetSubresourceSpeculation() override;
65 void SetOmniboxSpeculation() override; 65 void SetOmniboxSpeculation() override;
66 bool WasEverUsed() const override; 66 bool WasEverUsed() const override;
67 bool UsingTCPFastOpen() const override;
68 bool WasNpnNegotiated() const override; 67 bool WasNpnNegotiated() const override;
69 net::NextProto GetNegotiatedProtocol() const override; 68 net::NextProto GetNegotiatedProtocol() const override;
70 bool GetSSLInfo(net::SSLInfo* ssl_info) override; 69 bool GetSSLInfo(net::SSLInfo* ssl_info) override;
71 void GetConnectionAttempts(net::ConnectionAttempts* out) const override; 70 void GetConnectionAttempts(net::ConnectionAttempts* out) const override;
72 void ClearConnectionAttempts() override {} 71 void ClearConnectionAttempts() override {}
73 void AddConnectionAttempts(const net::ConnectionAttempts& attempts) override { 72 void AddConnectionAttempts(const net::ConnectionAttempts& attempts) override {
74 } 73 }
75 int64_t GetTotalReceivedBytes() const override; 74 int64_t GetTotalReceivedBytes() const override;
76 75
77 private: 76 private:
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // The callback passed to Connect(). 109 // The callback passed to Connect().
111 net::CompletionCallback user_connect_callback_; 110 net::CompletionCallback user_connect_callback_;
112 111
113 scoped_refptr<net::DrainableIOBuffer> write_buf_; 112 scoped_refptr<net::DrainableIOBuffer> write_buf_;
114 scoped_refptr<net::DrainableIOBuffer> read_buf_; 113 scoped_refptr<net::DrainableIOBuffer> read_buf_;
115 }; 114 };
116 115
117 } // namespace jingle_glue 116 } // namespace jingle_glue
118 117
119 #endif // JINGLE_GLUE_FAKE_SSL_CLIENT_SOCKET_H_ 118 #endif // JINGLE_GLUE_FAKE_SSL_CLIENT_SOCKET_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/p2p/socket_host_test_utils.cc ('k') | jingle/glue/fake_ssl_client_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698