当前位置: 技术问答>linux和unix
select监听socket请求超时处理
来源: 互联网 发布时间:2017-05-05
本文导语: 本帖最后由 xcy19890309 于 2013-12-17 17:10:13 编辑 ......省去socket初始化 fd_set wfds; struct timeval tv; FD_ZERO(&wfds); FD_SET(sock, &wfds); tv.tv_sec = 200; tv.tv_usec = 0; r...
fd_set wfds;
struct timeval tv;
FD_ZERO(&wfds);
FD_SET(sock, &wfds);
tv.tv_sec = 200;
tv.tv_usec = 0;
ret = select(sock+1, NULL, &wfds, NULL, &tv);
if(ret