diff options
Diffstat (limited to 'net/socket/socket.h')
-rw-r--r-- | net/socket/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/socket/socket.h b/net/socket/socket.h index c185c44..b02de0a 100644 --- a/net/socket/socket.h +++ b/net/socket/socket.h @@ -48,6 +48,8 @@ class NET_EXPORT Socket { // Disconnected before the write completes, the callback will not be invoked. virtual int Write(IOBuffer* buf, int buf_len, OldCompletionCallback* callback) = 0; + virtual int Write(IOBuffer* buf, int buf_len, + const CompletionCallback& callback) = 0; // Set the receive buffer size (in bytes) for the socket. // Note: changing this value can affect the TCP window size on some platforms. |