c++ winsock2,如何判断连接何时关闭
我有一个使用winsock2 的C++ 程序。我想知道如何判断某人与我的程序的连接何时关闭。
I have a c++ program using winsock2. I would like to know how to tell when someone's connection to my program closes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用select等待socket上的读取;当套接字关闭时,winsock 应该将其报告为可读。从套接字接收将返回 0 个字节,告诉您套接字已关闭。
Use select to wait for reading on the socket; when the socket is closed winsock should report it as readable. Receiving from the socket will then give you 0 bytes, telling you that the socket was closed.