summaryrefslogtreecommitdiffstats
path: root/net/base/socket.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/socket.h')
-rw-r--r--net/base/socket.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/base/socket.h b/net/base/socket.h
index 11f0906e..8891339 100644
--- a/net/base/socket.h
+++ b/net/base/socket.h
@@ -39,11 +39,11 @@ class Socket {
public:
virtual ~Socket() {}
- // Read data, up to buf_len bytes, from the socket. The number of bytes read
- // is returned, or an error is returned upon failure. Zero is returned to
- // indicate end-of-file. ERR_IO_PENDING is returned if the operation could
- // not be completed synchronously, in which case the result will be passed to
- // the callback when available.
+ // Reads data, up to buf_len bytes, from the socket. The number of bytes
+ // read is returned, or an error is returned upon failure. Zero is returned
+ // to indicate end-of-file. ERR_IO_PENDING is returned if the operation
+ // could not be completed synchronously, in which case the result will be
+ // passed to the callback when available.
virtual int Read(char* buf, int buf_len,
CompletionCallback* callback) = 0;