Add descriptors present in the socket database to an fdset and update the value of maxfd which are needed by the select function for looking through all available sockets for incoming data.
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.
Removes the least recently used client from the session This may be useful if new clients are requesting for connection but max number of connections is reached, in which case the client which is inactive for the longest will be removed from the session.
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.