httpd_socket_recv() function
A low level API to receive data from a given socket This internally calls the default recv function, or the function registered by httpd_sess_set_recv_override().
Arguments
sockfd
session socket file descriptor
buf
buffer with bytes to send
flags
flags for the send() function
Return value
- Bytes : The number of bytes received successfully - 0 : Buffer length parameter is zero / connection closed by peer - HTTPD_SOCK_ERR_INVALID : Invalid arguments - HTTPD_SOCK_ERR_TIMEOUT : Timeout/interrupted while calling socket recv() - HTTPD_SOCK_ERR_FAIL : Unrecoverable error while calling socket recv()
Notes
This API is not recommended to be used in any request handler. Use this only for advanced use cases, wherein some asynchronous communication is required.