| 982 | */ |
| 983 | template <typename MutableBufferSequence> |
| 984 | std::size_t read_some(const MutableBufferSequence& buffers) |
| 985 | { |
| 986 | boost::system::error_code ec; |
| 987 | std::size_t s = this->impl_.get_service().receive( |
| 988 | this->impl_.get_implementation(), buffers, 0, ec); |
| 989 | boost::asio::detail::throw_error(ec, "read_some"); |
| 990 | return s; |
| 991 | } |
| 992 | |
| 993 | /// Read some data from the socket. |
| 994 | /** |
nothing calls this directly
no test coverage detected