Subject: Re: [Boost-users] boost::asio::read_until reads too much!
From: Igor R (boost.lists_at_[hidden])
Date: 2009-02-21 19:01:01


> In reality it will read more than that into the streambuf ...
>
> I'm reworking my implementation to have my own buffer (not streambuf based)
> and then implement my own "read_until" ...

I guess, the only way to really read *until* is to read char-by-char
(which might be very inefficient) isn't it?