httpd_sess_pending() function
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.
Return value
True if there is any pending data