boost:tcp 客户端的 readline
我正在使用 boost 在 C++ 中开发 TCP 服务器。我想逐行处理传入的数据,并正在寻找 socket.readLine 方法。但是,我只能找到一个 read_some() 方法。我不知道“some”的定义是什么,但我认为该字符串不一定以“\n”结尾。
那么如何使用 boost 来实现 socket.readLine() 呢?
I'm developing a tcp server in c++ using boost. I'd like process incoming data line by line and am looking for a socket.readLine method. However, I can only find a read_some() method. I don't what the definition on "some" is, but I don't think the string necessarily ends with a "\n".
So how can I implement socket.readLine() using boost?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您正在使用 boost::asio。如果是这样,有一个 read_until() 函数可以完成您想要的操作。
http://www.boost.org/doc /libs/1_47_0/doc/html/boost_asio/reference/read_until.html
I assume you are using boost::asio. If so, there is a read_until() function that does what you want.
http://www.boost.org/doc/libs/1_47_0/doc/html/boost_asio/reference/read_until.html
有
read_until
< /a>there is
read_until
使用 boost::asio::read_until( ..)。
Use boost::asio::read_until(..).