socket编程中应用recv判断连接已断开
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在网络编程中,经常会检测网络的连接情况,进而进行下面的动作。在Linux的socket编程中,有一种非常方便的方法,来判断对方是否断开了连接,就是使用recv函数。
在APUE 中,对 recv的表述如下,
#include <sys/socket.h>
ssize_t recv(int sockfd, void *buf, size_t nbytes, int flags);
返回值:返回数据的字节长度;若无可用数据或对等方已经按序结束,返回0;若出错,返回-1
如果发送端主动关闭传输,或是发送端主动关闭了连接后,recv最终会返回0.
利用这个特性,可以用 recv返回0来进行发送方断开连接的判断。
/* receive ready*/
if(FD_ISSET(clientfd,&rdset_tmp)){
recbytes = recv(clientfd,buff,RECV_DATA_LEN,0);
if(recbytes>0){
/* recv data handle */
#if debug_printf
printf("recv data %d bytes\n",recbytes);
#endif
if(buff[0]==0x56 && buff[1]==0x88)
send_flag=0x55;
}else if(recbytes==0){
/* the client disconnect 返回0,发送端已断开连接*/
#if debug_printf
printf("client%d disconnect\n",clientIndex+1);
#endif
pthread_mutex_lock(&clientsMutex28000[i]);
clients28000[clientIndex].isConn = 0;
pthread_mutex_unlock(&clientsMutex28000[i]);
pthread_mutex_lock(&activeConnMutex28000);
if(activeConn)
activeConn--;
pthread_cond_signal(&connDis28000);
pthread_mutex_unlock(&activeConnMutex28000);
break;
}
}
需要注意的是:此种方法只能判断发送端主动断开连接的行为,对于网络异常等客观原因出现连接断开的情况无法判定,可以借助心跳数据等方式进一步判定。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献4条内容
所有评论(0)