Looking at the documentation for this function:<br><a href="http://www.boost.org/doc/libs/1_37_0/doc/html/boost_asio/reference/basic_stream_socket/read_some/overload1.html">http://www.boost.org/doc/libs/1_37_0/doc/html/boost_asio/reference/basic_stream_socket/read_some/overload1.html</a><br>
<br>I&#39;m not entirely clear whether it will do what I want.  Basically I&#39;m going to be having a server send blocks of signal data (of unknown duration or length).<br>I&#39;d like the client to be able to read chunks of that until the remote end closes.  So right now my API has the user pass in a memory buffer to fill along with a<br>
size and I repeatedly call socket::read to fill it up.  What I&#39;m curious about is if the server doesn&#39;t send a full block for the last block, and then closes the connection.<br>Will this function still return whatever data it was able to read and then throw an exception on the next read?  Or will it throw an exception on that last<br>
read, rendering the last bit of data inaccesible?<br><br>Sean<br>

