| 99 | } |
| 100 | |
| 101 | size_t UDPServer::option_receive_buffer_size() const |
| 102 | { |
| 103 | asio::socket_base::receive_buffer_size option; |
| 104 | _socket.get_option(option); |
| 105 | return option.value(); |
| 106 | } |
| 107 | |
| 108 | size_t UDPServer::option_send_buffer_size() const |
| 109 | { |