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
C socket programming: select() is returning 0 despite messages sent from server

I'm using select() to recv() messages from server, using TCP/IP. When I send() messages from the server, it returns …

c sockets tcp select-function