Ignore content-length in http response
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_IGNORE_CONTENT_LENGTH, long ignore);
If ignore is set to 1, ignore the Content-Length header in the HTTP response. This is useful for Apache 1.x (and similar servers) which will report incorrect content length for files over 2 gigabytes. If this option is used, curl will not be able to accurately report progress, and will simply stop the download when the server ends the connection.
Only use this option if strictly necessary.
0
HTTP
TODO
Added in 7.14.1
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.