| 113 | } |
| 114 | |
| 115 | void UDPServer::SetupReceiveBufferSize(size_t size) |
| 116 | { |
| 117 | asio::socket_base::receive_buffer_size option((int)size); |
| 118 | _socket.set_option(option); |
| 119 | } |
| 120 | |
| 121 | void UDPServer::SetupSendBufferSize(size_t size) |
| 122 | { |
nothing calls this directly
no outgoing calls
no test coverage detected