select 无限期地等待

问题描述 投票:0回答:1

我在尝试 select() 时得到了一个奇怪的结果。

fd_set tempset,set; //set of descriptors

FD_ZERO(&set); //initialize descriptor set to NULL

FD_SET(serversock,&set); //add server's socket to descriptor set 'set'

timeout.tv_sec=2;
timeout.tv_usec=0;

while(1){

tempset=set;
timeout.tv_sec=2;
timeout.tv_usec=0;

printf("%s","Waiting on select\n");

int ret=select(FD_SETSIZE,&tempset,NULL,NULL,&timeout);

if(ret==0) printf("timeout ");

else if(ret==-1){
    printf("Error occured\n");
    exit(0);
}

else if(ret>0){ //socket ready for reading
    
    for(i=0;i<FD_SETSIZE;i++){
        
    if(FD_ISSET(i,&tempset)){ //check if it's serversock
        
        if(i==serversock){
              //accept connection and read/write
              printf("Client connected\n");
       
    }//i==serversock close
    
    }
}//for ends 
}

当我删除行 printf("%s","Waiting on select "); select 无限期地等待。但是,当我重新插入该行时,一切都按预期工作(使用客户端连接进行测试)

我错过了什么吗?

c linux select posix-select
1个回答
3
投票

您滥用了

FD_SETSIZE
,您根本不应该直接使用它。您只将一个套接字放入
fd_set
中,因此根本不需要循环它(但如果确实需要,请使用
fd_set.fd_count
成员代替)。

试试这个:

fd_set set;
timeval timeout;

while(1){ 
    FD_ZERO(&set);
    FD_SET(serversock, &set);

    timeout.tv_sec = 2; 
    timeout.tv_usec = 0; 

    printf("%s","Waiting on select\n"); 

    int ret = select(serversock+1, &set, NULL, NULL, &timeout); 

    if (ret==0){
        printf("timeout "); 
    }

    else if (ret==-1){ 
        printf("Error occured\n"); 
        exit(0); 
    } 

    else if (ret>0){ //socket ready for reading 
        ... = accept(serversock, ...);
        printf("Client connected\n"); 
    }
}

或者:

fd_set set;
timeval timeout;
int max_fd = 0;

while(1){ 
    FD_ZERO(&set);

    FD_SET(serversock, &set);
    max_fd = serversock;

    // FD_SET() other sockets and updating max_fd as needed...

    timeout.tv_sec = 2; 
    timeout.tv_usec = 0; 

    printf("%s","Waiting on select\n"); 

    int ret = select(max_fd+1, &set, NULL, NULL, &timeout); 

    if (ret==0){
        printf("timeout "); 
    }

    else if (ret==-1){ 
        printf("Error occured\n"); 
        exit(0); 
    } 

    else if (ret>0){ //socket(s) ready for reading 
        for (u_int i = 0; i < set.fd_count; ++i){
            ... = accept(set.fd_array[i], ...);
            printf("Client connected\n"); 
        }
    }
} 
© www.soinside.com 2019 - 2024. All rights reserved.