选择始终在创建套接字后返回1并在linux中返回FD_SET

时间:2016-08-27 17:36:38

标签: c linux sockets

今天我在Linux(Debian)中创建了一个示例代码套接字。但在FD_ZEROFD_SET之后,它运行不正确。 select将在超时之前返回1(我的期望是select将返回0)但我没有对套接字采取行动。这是我的代码。有人能帮助我吗?

#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>

int
main(void)
{
    fd_set rfds;
    struct timeval tv;
    int sockfd, retval;
    sockfd = socket(AF_INET, SOCK_STREAM, 0);
   /* Watch sockfd to see when it has input. */
    FD_ZERO(&rfds);
    FD_SET(sockfd, &rfds);

   /* Wait up to five seconds. */
    tv.tv_sec = 5;
    tv.tv_usec = 0;

   retval = select(FD_SETSIZE, &rfds, NULL, NULL, &tv);
    /* Don't rely on the value of tv now! */

   if (retval == -1)
        perror("select()");
    else if (retval)
        printf("Data is available now.\n");
        /* FD_ISSET(sockfd, &rfds) will be true. */
    else
        printf("No data within five seconds.\n");

   exit(EXIT_SUCCESS);
}

1 个答案:

答案 0 :(得分:1)

第一个问题是FD_SET。第一个参数应该是套接字的文件描述符:

FD_SET( sockfd, &rfds );

select电话中也存在问题。第一个参数必须大于最大描述符。来自select的手册页:

  

(示例:如果您设置了两个文件描述符417,则为nfds   不应该是2
  而是17 + 1,即18。)

所以select调用应该是:

select( sockfd+1, &rfds, NULL, NULL, &tv );