了解数据何时发送
我相信知道在非阻塞模式下调用 send 或 WSASend 只是在内部缓冲区中添加数据,但如何知道数据何时真正发送?我的目标是显示进度条。
I believe know that call send or WSASend in nonblocking mode add simply data in a internal buffer, but how know when data is really sent ? My goal is to display a progress bar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试 Boost.Asio (如果可行的话)你去改变)。它可以执行异步或同步发送和接收。异步发送时,您可以注册一个函数,该函数将在发送完成时调用。
You could try Boost.Asio (if it's feasible for you to change). It can perform async or sync sending and receiving. When sending asyncronously you can register a function that will be called when the send is complete.