1CURLOPT_IGNORE_CONTENT_LENGTcHu(r3l)_easy_setopt optCiUoRnLsOPT_IGNORE_CONTENT_LENGTH(3)
2
3
4

NAME

6       CURLOPT_IGNORE_CONTENT_LENGTH - ignore content length
7

SYNOPSIS

9       #include <curl/curl.h>
10
11       CURLcode curl_easy_setopt(CURL *handle, CURLOPT_IGNORE_CONTENT_LENGTH,
12                                 long ignore);
13

DESCRIPTION

15       If  ignore  is  set to 1L, ignore the Content-Length header in the HTTP
16       response and ignore asking for or relying on it for FTP transfers.
17
18       This is useful for HTTP with Apache 1.x  (and  similar  servers)  which
19       will  report  incorrect  content  length for files over 2 gigabytes. If
20       this option is used,  curl  will  not  be  able  to  accurately  report
21       progress,  and  will  simply stop the download when the server ends the
22       connection.
23
24       It is also useful with FTP when for example the file is  growing  while
25       the  transfer is in progress which otherwise will unconditionally cause
26       libcurl to report error.
27
28       Only use this option if strictly necessary.
29

DEFAULT

31       0
32

PROTOCOLS

34       HTTP
35

EXAMPLE

37       CURL *curl = curl_easy_init();
38       if(curl) {
39         curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
40
41         /* we know the server is silly, ignore content-length */
42         curl_easy_setopt(curl, CURLOPT_IGNORE_CONTENT_LENGTH, 1L);
43
44         curl_easy_perform(curl);
45       }
46

AVAILABILITY

48       Added in 7.14.1. Support for FTP added in 7.46.0.
49

RETURN VALUE

51       Returns CURLE_OK if the option is supported,  and  CURLE_UNKNOWN_OPTION
52       if not.
53

SEE ALSO

55       CURLOPT_HTTP_VERSION(3), CURLOPT_MAXFILESIZE_LARGE(3),
56
57
58
59libcurl 7.61.1                 February 03, 201C6URLOPT_IGNORE_CONTENT_LENGTH(3)
Impressum