You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @brief Handles a client connection and serves the requested file.
* It receives the request data from the client and checks if the request is a GET request using a regular expression.
* If it is a GET request, it extracts the requested file name from the request, decodes the URL, and builds an HTTP response using the build_http_response function.
* Finally, it sends the response to the client and cleans up resources.