diff options
Diffstat (limited to 'net/udp/udp_client_socket.cc')
-rw-r--r-- | net/udp/udp_client_socket.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/udp/udp_client_socket.cc b/net/udp/udp_client_socket.cc index 5cc498d..cdbf756 100644 --- a/net/udp/udp_client_socket.cc +++ b/net/udp/udp_client_socket.cc @@ -45,5 +45,12 @@ int UDPClientSocket::GetLocalAddress(AddressList* address) const { return socket_.GetLocalAddress(address); } +bool UDPClientSocket::SetReceiveBufferSize(int32 size) { + return true; +} + +bool UDPClientSocket::SetSendBufferSize(int32 size) { + return true; +} } // namespace net |