Sends bytes from a connected socket.
#include <prio.h> PRInt32 PR_Send( PRFileDesc *fd, const void *buf, PRInt32 amount, PRIntn flags, PRIntervalTime timeout);
The function has the following parameters:
fdPRFileDesc object representing a socket.bufamountbuf (in bytes).flagstimeoutPRIntervalTime specifying the time limit for completion of the receive operation.The function returns one of the following values:
PR_GetError.PR_Send blocks until all bytes are sent, a timeout occurs, or an error occurs.