Found 8 other functions taking a
sock_db
argument:
Remove client descriptor from the session / socket database and close the connection for this client.
Trigger an httpd session close externally
Processes incoming HTTP requests
Checks if session has any pending data/packets for processing This is needed as httpd_unrecv may un-receive next packet in the stream. If only partial packet was received then select() would mark the fd for processing as remaining part of the packet would still be in socket recv queue. But if a complete packet got unreceived then it would not be processed until further data is received on the socket. This is when this function comes in use, as it checks the socket's pending data buffer.
Initiates the processing of HTTP request Receives incoming TCP packet on a socket, then parses the packet as HTTP request and fills httpd_req_t data structure with the extracted URI, headers are ready to be fetched from scratch buffer and calling http_recv() after this reads the body of the request.