boost::asio::async_read 和 boost::asio::streambuf
我将 async_read 与 Streambuf 一起使用。但是,我想将读取的数据量限制为 4,这样我就可以在进入正文之前正确处理标头。
我该如何使用 async_read 来做到这一点?
I am using async_read with streambuf. However, I would like to limit the amount of data read to 4, so I can properly handle header before going to body.
How can I do that using async_read?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用两个
async_read
操作,其中第一个读取 4 字节标头,第二个读取消息正文。第一个async_read
的处理程序应启动消息正文的async_read
。asio 示例在几个地方使用了这种技术,序列化示例就是其中之一。我还回答了类似的问题,尽管它使用同步读取,但概念是相同的。
Use two
async_read
operations where the first reads a 4 byte header, and the second reads the message body. Your handler to the firstasync_read
should start theasync_read
for the message body.The asio examples use this technique in a couple of places, the serialization example is one. I also answered a similar question, though it uses synchronous reads, but the concept is the same.
您可以使用 transfer_at_least< 保证标头可用/a> as async_read 的完成条件。
一旦处理了初始标头,就可以处理任何多余的正文数据(或其他标头)。
You can guarantee the header is available using transfer_at_least as CompletionCondition on async_read.
Any superfluous body data (or further headers) can be processed once you handle the initial header.
就是你所需要的。尝试像这样使用:
is what you need.just try using like this: