当前位置: 技术问答>linux和unix
谁知道 FD_SET,FD_ZERO函数是干什么的,我怎么找不到
来源: 互联网 发布时间:2014-12-01
本文导语: 谁知道 FD_SET,FD_ZERO函数是干什么的,我怎么找不到 | 多端口复用函数select在调用前要首先设置监听的端口数目,FD_ZERO是清空端口集,FD_SET是设置端口集。 select函数常常用在用一个进程监听...
谁知道 FD_SET,FD_ZERO函数是干什么的,我怎么找不到
|
多端口复用函数select在调用前要首先设置监听的端口数目,FD_ZERO是清空端口集,FD_SET是设置端口集。
select函数常常用在用一个进程监听多个服务器端socket。
select函数常常用在用一个进程监听多个服务器端socket。
|
select function
FD_SET(int fd,fd_set *set) this add a descripter from a set.
FD_ZERO(fd_set *set) this will clear a set.
Just try
FD_SET(int fd,fd_set *set) this add a descripter from a set.
FD_ZERO(fd_set *set) this will clear a set.
Just try