Civetweb API Reference

mg_read( conn, buf, len );

Parameters

ParameterTypeDescription
connstruct mg_connection *A pointer referencing the connection
bufvoid *A pointer to the location where the received data can be stored
lensize_tThe maximum number of bytes to be stored in the buffer

Return Value

TypeDescription
intThe number of read bytes, or a status indication

Description

The function mg_read() receives data over an existing connection. The data is handled as binary and is stored in a buffer whose address has been provided as a parameter. The function returns the number of read bytes when successful, the value 0 when the connection has been closed by peer and a negative value when no more data could be read from the connection.

See Also