diff options
Diffstat (limited to 'net/udp/udp_server_socket.h')
-rw-r--r-- | net/udp/udp_server_socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/udp/udp_server_socket.h b/net/udp/udp_server_socket.h index bb6ac5c..89acb4f 100644 --- a/net/udp/udp_server_socket.h +++ b/net/udp/udp_server_socket.h @@ -27,11 +27,11 @@ class NET_EXPORT UDPServerSocket : public DatagramServerSocket { virtual int RecvFrom(IOBuffer* buf, int buf_len, IPEndPoint* address, - OldCompletionCallback* callback) OVERRIDE; + const CompletionCallback& callback) OVERRIDE; virtual int SendTo(IOBuffer* buf, int buf_len, const IPEndPoint& address, - OldCompletionCallback* callback) OVERRIDE; + const CompletionCallback& callback) OVERRIDE; virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; virtual bool SetSendBufferSize(int32 size) OVERRIDE; virtual void Close() OVERRIDE; |