赞
踩
在UDP/TCP通讯的时候,若是发送一条指令过去,而该指令是操做设置指令对方没有反馈信息的时候,会在发送成功后被搞死。server
就是发送不能新的指令,而对方也一直没有新的信息发过来的这种状态。循环
这时候能够设置一个超时的参数,必定时间内没有接收到新的信息,就自动跳过了。而后从新进入通讯循环while(1)。im
接收超时:error
struct timeval timeout;通信
timeout.tv_sec=3; //任意设一个接收时间范围时间
timeout.tv_usec=0;while
if(setsockopt(sock_fd,SOL_SOCKET,SO_RCVTIMEO,&timeout,sizeof(timeout))>=0)co
{time
printf("setting success\n");错误
}
发送的话根据格式该一下就行了。
若是接收时产生了error:Resource temporarily unavailable
只用在判断接收错误的if()语句里再添加一个判断语句就行,代码以下:
if(recvfrom(sock_ed,buff,strlen(buff),0,(struct sockaddr*)(&server_addr),&addr_len)<0)
{
if(errno==EAGAIN) //EAGAIN就是指Resource temporarily unavailable,即buff还有东西没传送完,其他空间不足以接受新的信息。
{
sleep(2);
continue;
printf("error=EAGAIN,continue \n");
}
else
......
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。