在Eclipse中无法识别fd_set

时间:2012-10-22 04:41:45

标签: c++ linux sockets

我在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无法识别

1 个答案:

答案 0 :(得分:5)

根据http://linux.die.net/man/3/fd_set#include <sys/select.h>。希望这会成功。