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