我在Eclipse工作,涉及服务器和客户端通过套接字进行通信的任务。我尝试使用accept
系统调用,该调用使用fd_set
结构。问题是Eclipse表示类型fd_set
未解析。
以下是我的导入列表:
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <arpa/inet.h>
#include <vector>
#include <iostream>
#include <errno.h>
#include <stdio.h>
#include <unistd.h>
为什么Eclipse指示 fd_set无法识别?