在我的 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 个不同的连接,对吗?是否可以只打开一次连接,使其保持活动状态,然后检查此连接上是否有可用数据?
谢谢,帕特里克!