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

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

Issue 7251004: Deciding best connection to schedule requests on based on cwnd and idle time (Reopened after revert) (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Syncing to head Created 9 years, 5 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
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_TCP_CLIENT_SOCKET_WIN_H_ 5 #ifndef NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_
6 #define NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_ 6 #define NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include <winsock2.h> 9 #include <winsock2.h>
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 virtual void Disconnect(); 46 virtual void Disconnect();
47 virtual bool IsConnected() const; 47 virtual bool IsConnected() const;
48 virtual bool IsConnectedAndIdle() const; 48 virtual bool IsConnectedAndIdle() const;
49 virtual int GetPeerAddress(AddressList* address) const; 49 virtual int GetPeerAddress(AddressList* address) const;
50 virtual int GetLocalAddress(IPEndPoint* address) const; 50 virtual int GetLocalAddress(IPEndPoint* address) const;
51 virtual const BoundNetLog& NetLog() const { return net_log_; } 51 virtual const BoundNetLog& NetLog() const { return net_log_; }
52 virtual void SetSubresourceSpeculation(); 52 virtual void SetSubresourceSpeculation();
53 virtual void SetOmniboxSpeculation(); 53 virtual void SetOmniboxSpeculation();
54 virtual bool WasEverUsed() const; 54 virtual bool WasEverUsed() const;
55 virtual bool UsingTCPFastOpen() const; 55 virtual bool UsingTCPFastOpen() const;
56 virtual int64 NumBytesRead() const;
57 virtual base::TimeDelta GetConnectTimeMicros() const;
56 58
57 // Socket methods: 59 // Socket methods:
58 // Multiple outstanding requests are not supported. 60 // Multiple outstanding requests are not supported.
59 // Full duplex mode (reading and writing at the same time) is supported 61 // Full duplex mode (reading and writing at the same time) is supported
60 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); 62 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
61 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback); 63 virtual int Write(IOBuffer* buf, int buf_len, CompletionCallback* callback);
62 64
63 virtual bool SetReceiveBufferSize(int32 size); 65 virtual bool SetReceiveBufferSize(int32 size);
64 virtual bool SetSendBufferSize(int32 size); 66 virtual bool SetSendBufferSize(int32 size);
65 67
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 136
135 BoundNetLog net_log_; 137 BoundNetLog net_log_;
136 138
137 // This socket was previously disconnected and has not been re-connected. 139 // This socket was previously disconnected and has not been re-connected.
138 bool previously_disconnected_; 140 bool previously_disconnected_;
139 141
140 // Record of connectivity and transmissions, for use in speculative connection 142 // Record of connectivity and transmissions, for use in speculative connection
141 // histograms. 143 // histograms.
142 UseHistory use_history_; 144 UseHistory use_history_;
143 145
146 base::TimeTicks connect_start_time_;
147 base::TimeDelta connect_time_micros_;
148 int64 num_bytes_read_;
149
144 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketWin); 150 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketWin);
145 }; 151 };
146 152
147 } // namespace net 153 } // namespace net
148 154
149 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_ 155 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698