我在监听多个套接字时遇到问题。我有一个监听一堆套接字的函数,但是当我测试并且只在其中一个套接字上发送数据时;FD_ISSET 方法为每个套接字持续返回 true,并且对于我也没有发送数据的套接字,缓冲区中没有返回数据(因为没有数据)。我正在使用每个套接字进行发送和接收。我究竟做错了什么 ?
编辑:发生的事情是 printf 语句打印了多次,而它应该只打印一次,因为我只在 1 个套接字上发送了数据。我已经添加了对 read()>0 的返回值的测试,但它仍然没有乐趣。
void receive(struct nodeData *nd, struct sockInfo *si){
char buffer[MAXBUF];
struct timeval timeout;
timeout.tv_sec = 0;
timeout.tv_usec = 1000;
// ----Wait in select until file descriptors change----
int y = select(si->maxFD, &si->fd_read_set, NULL, NULL, &timeout);
printf("ID: %d Y %d\n", nd->id, y);
if (y <= 0)
return;
for (int i=0; i < nd->netTopo->n; i++) {
/* ----Was it child i---- */
if (FD_ISSET(si->mastFD[i], &si->fd_read_set)) {
read(si->mastFD[i], buffer, MAXBUF);
printf("%d %d %d \n",buffer[0], buffer[1], buffer[2]); // For Testing
}
}
}