在C中请求套接字数据

时间:2012-11-23 11:55:10

标签: c sockets

在我的C应用程序中,我以下列方式等待套接字上的数据:

printf("Opening socket and wait for data.\n");
while (i < 5)  
   while((connection_fd = accept(socket_fd, 
                            (struct sockaddr *) &address,
                            &address_length)) > -1)
   {
    bzero(buffer, 64);
    n = read(connection_fd,buffer,64);
    if (n < 0) printf("ERROR reading from socket");
    printf("Here is the message of length %d bytes:\n\n", n);
    for (int i = 0; i < n; i++)
    {
      printf("%02X", buffer[i]);
    } 
    printf("\n\n");          
    break;  
    }
 i++
 }

这意味着我从Socket中读取了5次数据,然而,从它的外观来看,我似乎正在打开5个不同的连接是对的吗?是否可以只打开一次连接,保持连接状态,然后检查此连接上是否有可用的数据?

谢谢,帕特里克!

5 个答案:

答案 0 :(得分:2)

您的代码需要进行一些重组,您应该只接受一次新连接:

while (1) {
    connection_fd = accept(socket_fd, ...);

    /* check for errors */
    if (connection_fd < 0) {
      /* handle error */
    }

    /* note this could block, if you don't want
       that use non-blocking I/O and select */    
    while ((n=read(connection_fd, buf, ...)) > 0) {
        /* do some work */
    }

    /* close fd */ 
    close(fd);
}

答案 1 :(得分:0)

不确定。 为此,您可能希望将参数交换为两个while()循环:

while ((connection_fd = accept(socket_fd, 
                          (struct sockaddr *) &address,
                          &address_length)) > -1)
  while (i < 5)  
  {
    ...

答案 2 :(得分:0)

是。删除while (i<5)位。在read之后,如果需要,您可以阅读更多数据。

答案 3 :(得分:0)

这很简单。将语句调用accept函数移到循环外部,然后使用相同的套接字描述符调用read。

答案 4 :(得分:0)

if (n < 0) printf("ERROR reading from socket");

你为什么要继续前进?要么break;循环,要么continue;用于新连接。