gpt4 book ai didi

windows - 套接字 : Client was disconnected or not?

转载 作者:可可西里 更新时间:2023-11-01 11:22:36 25 4
gpt4 key购买 nike

我正在创建套接字服务器。但我不知道,我怎么知道客户端断开连接了?我正在 Windows 下创建服务器并使用 berkeley 套接字功能(读取、发送、连接....)。我最好想要一个跨平台解决方案(没有 WSA 功能)。

我可以写入套接字 0 字节并检测到错误。但这不是好的解决方案。

最佳答案

当客户端断开连接时,您将收到一个“read”事件,但 read() 将返回 0。

ssize_t bytes_read;
if ((bytes_read = read(...)) == 0)
{
// client disconnected
}
else if (bytes_read == -1)
{
// some sort of error (also no data available when using non-blocking sockets).
}
else
{
// you have bytes_reads bytes to process
}

关于windows - 套接字 : Client was disconnected or not?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1805706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com