Description According to the CURL documentation (https://curl.se/libcurl/c/CURLOPT_ACCEPT_ENCODING.html) setting CURLOPT_ACCEPT_ENCODING to a null value (not an empty string) will prevent it from decompressing the returned data stream. T...
The test program below (modified from examples/httpcustomheader.c) attempts to send 2 requests to a host, and reuse the curl handle. On the second request, it attempts to disable CURLOPT_ACCEPT_ENCODING by explicitly setting the Accept-E...