epoll非阻塞IO

设置connfd套接字为非阻塞

flag = fcntl(connfd, F_GETFL);

flag |= O_NONBLOCK;

fcntl(connfd, F_SETFL, flag);

 

转载于:https://www.cnblogs.com/lr1402585172/p/10758740.html

你可能感兴趣的:(epoll)