- 论坛徽章:
- 0
|
代码如下:
while(1)
{
FD_ZERO(&fds);
FD_SET(sockfd,&fds);
maxfdp = sockfd +1;
if((selt=select(maxfdp,&fds,&fds,NULL,&timeout)) > 0)
{
printf("-------------%d--%d------------\n",selt,sockfd);
if(FD_ISSET(sockfd,&fds))
{
ZERO(str,SIZE/4);
ret=read(sockfd,str,SIZE/4);
if(ret==-1)
{
perror("read");
continue;
}
if(ret>0)
{
strcat(buf,str);
printf("read the data successly! %d\n",strlen(str));
}
if(ret==0)
{
break;
}
}
}
else if(selt==-1)
{
printf("select fail!\n");
return -1;
}
}
输出结果:
write successsful!
-------------1--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 148
-------------1--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 256
-------------2--3------------
read the data successly! 40
-------------1--3------------
为什么返回时2或者1呢?问什么不是3
问什么我这样,在网络不好的时候仍然会阻塞? (光标一直闪,就是读不到东西) |
|