1

我正在使用来自 Stevens 的 connect_nonb(),UNIX 网络编程:

int
connect_nonb(int sockfd, const SA *saptr, socklen_t salen, int nsec)
{
    int                     flags, n, error;
    socklen_t               len;
    fd_set                  rset, wset;
    struct timeval  tval;

    flags = Fcntl(sockfd, F_GETFL, 0);
    Fcntl(sockfd, F_SETFL, flags | O_NONBLOCK);

    error = 0;
    if ( (n = connect(sockfd, saptr, salen)) < 0)
            if (errno != EINPROGRESS)
                    return(-1);

    /* Do whatever we want while the connect is taking place. */

    if (n == 0)
            goto done;      /* connect completed immediately */

    FD_ZERO(&rset);
    FD_SET(sockfd, &rset);
    wset = rset;
    tval.tv_sec = nsec;
    tval.tv_usec = 0;

    if ( (n = Select(sockfd+1, &rset, &wset, NULL,
                                     nsec ? &tval : NULL)) == 0) {
            close(sockfd);          /* timeout */
            errno = ETIMEDOUT;
            return(-1);
    }

    if (FD_ISSET(sockfd, &rset) || FD_ISSET(sockfd, &wset)) {
            len = sizeof(error);
            if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &error, &len) < 0)
                    return(-1);                     /* Solaris pending error */
    } else
            err_quit("select error: sockfd not set");

done:
    Fcntl(sockfd, F_SETFL, flags);  /* restore file status flags */

    if (error) {
            close(sockfd);          /* just in case */
            errno = error;
            return(-1);
    }
    return(0);
}

此函数允许 connect() 的自定义超时。如果在 select() 中阻塞等待连接成功时,接收到信号,则 select() 以 -1 (EINTR) 退出。此时 select() 超时尚未到期,连接未成功(即目标主机可能断开连接)但随后的 getsockopt() 没有返回错误。

getsockopt() 应该返回错误还是应该由 Stevens 代码检查 select() 的返回码(和 errno)?

当前,当连接到不存在的主机并且信号中断 select() 时,此函数会错误地返回成功。

4

1 回答 1

2

我不确定是什么Select()。我认为它是某种薄包装select()

在大多数应用程序中,无论何时select()因.EINTRselect()select()

本案也不例外。select()应该在一个循环中。

于 2013-02-20T18:55:44.810 回答