返回值不正常

2019-07-24 17:43发布

调用ndk_1_94_1packages i dkincsocket.h中的fdselect函数,函数原型如下:
Int fdSelect( int width, fd_set *readfds, fd_set *writefds,fd_set *exceptfds, struct timeval *timeout );这个fdselect用在判断socket是否准备好的函数里,函数原型如下:
//sock是否准备好
//nRW:0为可读、1为可写
#define SOCKET_ERROR
-1
int commSockIsReady(SOCKET sock, UINT32 nTimeOut, UINT8 nRW)//这里nRW为0
{
int res;
fd_set fds;
int nStatus;
struct sockaddr_in destAddr;
struct timeval timeout;
timeout.tv_sec = nTimeOut/1000;
timeout.tv_usec = (nTimeOut%1000)*1000;
//timeout = {1, 0};
FD_ZERO(&fds);
FD_SET(sock, &fds);
if(nRW == 1)
nStatus = fdSelect(0, NULL, &fds, NULL, &timeout);
else if(nRW == 0)
nStatus = fdSelect(0, &fds, NULL, NULL, &timeout); //
else
assert(FALSE);
if(SOCKET_ERROR == nStatus)
{
res = fdError();
return SOCKET_ERROR;
}
if(0 == nStatus)
{
res = fdError();
return -2;
}
return 0;
}
IGMPTestGroup(BytePtrToUINT32(pIP), 0);     //CCS3.3使用的NDK组播函数
IGMPJoinHostGroup(BytePtrToUINT32(pIP), 0);    //CCS3.1使用的NDK组播函数
遇到的问题是fdSelect的返回值是0,导致commSockIsReady()返回值不正常
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
9条回答
午夜粪车
1楼-- · 2019-07-24 22:55
 精彩回答 2  元偷偷看……
huangchui
2楼-- · 2019-07-25 00:32
使用CCS3.1编译呢?
liliang9554
3楼-- · 2019-07-25 05:08
使用CCS3.1编译不存在此问题
yszong
4楼-- · 2019-07-25 07:57
CCS3.1的NDK和CCS3.3的不一样?
liliang9554
5楼-- · 2019-07-25 12:41
嗯,如果是NDK的原因,需要如何解决??
heweibig
6楼-- · 2019-07-25 13:59
 精彩回答 2  元偷偷看……

一周热门 更多>