在winsock中跳过数据?
是否可以跳过 TCP 流套接字上的部分传入数据,而不必将其读入缓冲区?最好,我正在寻找也可以异步工作的东西。
Is it possible to skip a portion of the incoming data on a TCP stream socket, instead of having to read it into a buffer? Preferably, I'm looking for something that also works asynchronously.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,只需阅读并丢弃它。
Yes, just read it and discard it.
不可能。
将其读入另一个缓冲区。
Not possible.
Read it into another buffer.