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:
fdPRFileDesc object representing a socket.bufamountbuf (in bytes).flagsPR_MSG_PEEK.timeoutPRIntervalTime specifying the time limit for completion of the receive operation.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.