Top "Select-function" questions

This tag is for questions regarding select() system function.

C, socket programming: Connecting multiple clients to server using select()

I'm trying to make a server that can be connected to by multiple clients. Here's my code so far: Client: …

c sockets network-programming client select-function
How to use select() to read input from keyboard in C

I am trying to use select() to read keyboard input and I got stuck in that I do not know …

c keyboard stdin textinput select-function
Using select() system call for listening on stdin and the server

I want to use select system call to multiplex STDIN and SOCKFD (connected to a server) such that I must …

c linux select-function
Impact of using select with blocking and non-blocking sockets

How will my program differ in behavior if I use non-blocking sockets with a select() call as opposed to using …

c network-programming nonblocking select-function