I wrote a small TCP servers with socket()
+ POLLIN poll()
+ recv()
+ send()
, but I don\'t know when to use <
The usual pattern is to use non-blocking file descriptors with poll()
like this:
poll()
,
POLLIN
because you are always interested in reading what the other end of the socket has send you.
POLLOUT
only if you have outstanding data to send to the other end.poll()
, if it indicates that data is available to read,
poll()
, if it indicates that the socket is writable,
POLLOUT
next time through the loopPOLLOUT
the next time through the loop.POLLOUT
the next time through the loop only if there was some data left.POLLOUT
the next time through the loop. (This choice is often easier to program because you only need to handle writing data in one place in your loop but on the other hand it delays writing the data until the next time through the loop.)