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

Unified Diff: net/socket/client_socket_handle.h

Issue 174287: Resend on IO errors on late bound sockets that were idle. (Closed)
Patch Set: Update comment. Created 11 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/client_socket_handle.h
diff --git a/net/socket/client_socket_handle.h b/net/socket/client_socket_handle.h
index ce0a0015dbeee8526eee8023a11fbb9069ebf500..d3233134fa42b7035f742386faa99177dc701974 100644
--- a/net/socket/client_socket_handle.h
+++ b/net/socket/client_socket_handle.h
@@ -28,9 +28,9 @@ namespace net {
class ClientSocketHandle {
public:
typedef enum {
- UNUSED = 0,
- UNUSED_IDLE,
- REUSED_IDLE,
+ UNUSED = 0, // unused socket that just finished connectin
darin (slow to review) 2009/08/24 16:54:41 nit: "connecting"
+ UNUSED_IDLE, // unused socket that has been idle for awhile
+ REUSED_IDLE, // previously used socket
NUM_TYPES,
} SocketReuseType;
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698