Top "Posix-select" questions

select vs poll vs epoll

I am designing a new server which needs to support thousands of UDP connections (somewhere around 100,000 sessions). Any input or …

linux sockets epoll posix-select
Socket programming in C, using the select() function

Based from the answers I got from this thread, I've created this: //Server sock_init(); //from SFL, see http://legacy.…

c sockets posix-select
socket select ()versus non-block recv

I've seen a few write-ups comparing select() with poll() or epoll(), and I've seen many guides discussing the actual usage …

c sockets nonblocking recv posix-select