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
PRFileDesc
object representing a socket.buf
amount
buf
(in bytes).flags
PR_MSG_PEEK
.timeout
PRIntervalTime
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.