How do I set the timeout for executing
a task?
Use select() and set a timeout. Invoke this before you call recv().
How do I know that there is no more
data to read from a stream, ie. it is
waiting for input?
This is trickier. You need to have some protocol so that the sending side can alert the receiving side that it is finished. The HTTP approach is just to close the socket on the sending side, which causes the receiving side's recv() to return zero bytes.
An alternative is that the sending side send a special character or character sequence. Another approach, depending on your application, you may have an exact number of bytes to transmit; this is rare though.