Tagged Questions
5
votes
2answers
1k views
*nix select and exceptfds/errorfds semantics
The select() syscall takes 3 filedescriptor sets for watching fds for readable/writeable and "exceptions" on filedescriptor.
My select man page doesn't state much about the exceptfd descriptor set.
...
1
vote
2answers
225 views
Sending structs through Unix domain sockets
I am using Unix domain sockets to do some interprocess communication in Linux. Upon connection, the client sends a struct using send to the server. This struct contains some information about the ...