确定使用 Winsock2 接收的数据包
有没有办法确定在 Winsock 中使用 recv() 时收到了多少个数据包?我正在寻找一种在客户端实现的解决方案,而对服务器端没有特殊要求(我无法控制)
Is there a way to determine how many packets where received while using recv() with Winsock? I am looking for a solution to implement at the client, without special requirements on the server side (which I have no control of)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 WinPCap 之类的工具来嗅探数据包。然后您可以将捕获的数据包与所使用的套接字关联起来。
You'd need to packet-sniff using something like the WinPCap. Then you could correlate the packets captured with the socket used.