Receives bytes from a connected socket.
#include <prio.h> PRInt32 PR_Recv( PRFileDesc *fd, void *buf, PRInt32 amount, PRIntn flags, PRIntervalTime timeout);
The function has the following parameters:
fd
buf
amount
flags
timeout
PRIntervalTime
The function returns one of the following values:
PR_GetError
PR_Recv blocks until some positive number of bytes are transferred, a timeout occurs, or an error occurs. No more than amount bytes will be transferred.
PR_Recv