| 250 | |
| 251 | template<class MutableBufferSequence> |
| 252 | size_t read_some(const MutableBufferSequence& mbs) |
| 253 | { |
| 254 | boost::system::error_code ec; |
| 255 | size_t amount = read_some(mbs, ec); |
| 256 | |
| 257 | if (ec) { |
| 258 | throw boost::system::system_error(ec); |
| 259 | } |
| 260 | |
| 261 | return amount; |
| 262 | } |
| 263 | |
| 264 | template<class MutableBufferSequence> |
| 265 | size_t read_some(const MutableBufferSequence& mbs, boost::system::error_code& ec) |
nothing calls this directly
no test coverage detected