| 39 | } |
| 40 | |
| 41 | size_t SSLSession::option_send_buffer_size() const |
| 42 | { |
| 43 | asio::socket_base::send_buffer_size option; |
| 44 | _stream.next_layer().get_option(option); |
| 45 | return option.value(); |
| 46 | } |
| 47 | |
| 48 | void SSLSession::SetupReceiveBufferSize(size_t size) |
| 49 | { |