read()在套接字编程中没有阻塞

时间:2012-10-07 22:46:23

标签: c linux sockets network-programming

我有一台服务器,每隔5秒就会向客户端发送一次数据。我希望客户端阻止read()直到服务器发送一些数据然后打印它。我知道read()默认是阻塞的。我的问题是我的客户端没有阻塞read()。这很奇怪,这似乎不是一个正常的问题。

我的代码在无限循环中打印“没有回来”。我在linux机器上,用c编程。我的代码片段如下。请指教。

while(1)
{
    n = read(sockfd, recvline, MAXLINE);
    if ( n > 0) 
    {
        recvline[n] = 0;    
        if (fputs(recvline, stdout) == EOF)
            printf("fputs error");
    }
    else if(n == 0)
        printf("Nothing came back");
    else if (n < 0)
        printf("read error");
}
return; 

3 个答案:

答案 0 :(得分:8)

可能有几个原因,在不同的地方有几个例外:

  1. 检查您创建的套接字:

    sockfd=socket(AF_INET,SOCK_STREAM,0);  
    if (sockfd==-1) {
        perror("Create socket");
    }
    
  2. 您还可以在使用前明确启用阻止模式:

    // Set the socket I/O mode: In this case FIONBIO  
    // enables or disables the blocking mode for the   
    // socket based on the numerical value of iMode.  
    // If iMode = 0, blocking is enabled;   
    // If iMode != 0, non-blocking mode is enabled.
    ioctl(sockfd, FIONBIO, &iMode);  
    

    或者您可以使用setsockopt,如下所示:

     struct timeval t;    
     t.tv_sec = 0;
     tv_usec = 0;
     setsockopt(
          sockfd,     // Socket descriptor
          SOL_SOCKET, // To manipulate options at the sockets API level
          SO_RCVTIMEO,// Specify the receiving or sending timeouts 
          const void *(&t), // option values
          sizeof(t) 
      );   
    
  3. 检查读取函数调用(错误原因)

    n = read(sockfd, recvline, MAXLINE);
    if(n < 0){  
        perror("Read Error:");
    }  
    
  4. 同样检查服务器代码!:

      
        
    1. 您的服务器可能会发送一些空白(不可打印,空,输入)章程。而你却没有意识到这一点。服务器代码也是错误的。

    2.   
    3. 服务器在客户端可以阅读之前终止

    4.   
  5. 另一个有趣的事情,请尝试理解:

      

    当你在服务器上呼叫N write()时,没有必要在另一方进行N read()呼叫。

答案 1 :(得分:3)

Greg Hewgill已作为评论撰写的内容:EOF(即明确停止撰写,无论是通过close()还是通过shutdown())将通过{{\ n}传达给接收方{1}}返回0.所以如果你得到0,你知道没有任何数据,你可以终止读取循环。

如果您启用了非阻止且没有数据,则会recv(),而-1将设置为errnoEAGAIN

答案 2 :(得分:1)

MAXLINE的价值是什么?

如果值为0,则它​​也将返回0。 否则,正如Grijesh Chauhan所提到的那样,将其明确地设置为阻止。

或者,您也可以考虑使用recv(),其中可以指定阻塞和非阻塞。 它有选项MSG_WAITALL,它将阻塞所有字节到达。

n = recv(sockfd, recvline, MAXLINE, MSG_WAITALL);