httpd_default_recv() function
This is the low level default recv function of the HTTPD. This should NEVER be called directly. The semantics of this is exactly similar to recv() of the BSD socket API.
Arguments
sockfd
Socket descriptor for sending data
buf
Pointer to the buffer which will be filled with the received data
buf_len
Length of the buffer
flags
Flags for mode selection
Return value
- Length of data : if successful - -1 : if failed (appropriate errno is set)