如何判断SOCKET已经断开

 我来答
本晓桐0J4
2017-07-29 · TA获得超过112个赞
知道小有建树答主
回答量:582
采纳率:52%
帮助的人:195万
展开全部
非阻塞模式,如果暂时没有数据,返回的值也会是<=0的,如果用阻塞模式的话,返回<=0的值是可以认为socket已经无效了。
当使用 select()函数测试一个socket是否可读时,如果select()函数返回值为1,
且使用recv()函数读取的数据长度为0 时,就说明该socket已经断开。

如果write,我觉得还有一些情况需要考虑,那就是写的太快的时候,有可能buffer写满了,这是,errno是EAGAIN,可以根据实际需要,如果errno是EAGAIN的话,再写几次。
当然,read的时候也有类似write的情况,需要check一下errno,如果是EAGAIN或者EINTR,最好不要立刻终止操作,再尝试一下!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

int SocketConnected(int sockfd)
{
fd_set rfds;
int res,read_res;
char buf[20] = {'\0'};
struct timeval timeout={3,0};
int again_time = 0;
FD_ZERO(&rfds);
FD_SET(sockfd,&rfds);

res = select(sock+1,&rfds,NULL,NULL,&timeout)

if(res > 0){
read_res = recv(sockfd,buf,sizeof(buf),0);
if(read_res < 0){
if(errno == EINTR){
printf("Interrupted by the signal!\n");
return 1;
} else {
printf("error!,the sockfd maybe closed!\n");
return 0;
}
} else if (read_res == 0){
printf("error!,the sockfd maybe closed!\n");
return 0;
} else {
printf("contenct normal!\n");
return 1;
}
} else if(res == 0){
printf("the timeout! content normal\n");
return 1;
} else if (errno == EINTR){
printf("Interrupted by the signal!\n");
return 1;

} else {
printf("select error!,try again!\n");
return 0;
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式