cpp-httplib
cpp-httplib copied to clipboard
A C++ header-only HTTP/HTTPS server and client library
Hello, I am using Cloudflare and Letsencrypt generated with Certbot but I don't know what to put here: `cli.set_ca_cert_path("./ca-bundle.crt");` I can't find a .crt file anywhere. Please help me. Thanks...
It does not appear that the server provides a way to send interim http response statuses. I see there is handling for 100 Continue, but there should be a way...
Today I was trying to use the client library (usually I use the server) and noticed that the `Delete` function doesn't have an overload with `Params`. Is this intentional or...
Hello, There seems to be no way to call `Server.stop()` from another thread without the possibility that the server will never shut down. The root of the problem is that...
Hi, As far as I can see support for multipart/form-data is only available for HTTP requests (both for the client and server side). Any opinion/plans about adding client and server...
Hello, this is is only a question / support request. We have an application with a number of handlers scattered through the code. The handler access objects, which are not...
Right now logger gets called after response body has been compressed, which means it is logged in a non-human-readable format Wouldn't it be better to log request before encoding the...
A better way of accessing form fields 1. Obtain the file uploaded through FormData in the interface [&] (const Request&/* req */, Response&res), and add some additional parameters, it's file_and_param....
Hello! We are seeing the following issue when the network is completely unavailable: the Get operations stalls in the [getaddrinfo](https://github.com/yhirose/cpp-httplib/blob/bd9612b81e6f39ab24a4be52fcda93658c0ca2dc/httplib.h#L2705) for about 30 seconds. We set the connection timeout and...