diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-08-01 11:56:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-08-01 11:56:03 +0000 |
commit | 9a264bf6106ee07829a3c418b6a5131aff6579b8 (patch) | |
tree | 6628cf8c90de0147865dceacfec77af3b37932bc /docs/libcurl | |
parent | 57007e80a92218a11c51a4f0de88012d39f06e41 (diff) |
mention that the NOBODY reset thing is added in 7.14.1
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index a63e225ef..f4ba68346 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -526,7 +526,7 @@ adding a header like "Transfer-Encoding: chunked" with specify the size in the request. When setting \fICURLOPT_POST\fP to a non-zero value, it will automatically set -\fICURLOPT_NOBODY\fP to 0. +\fICURLOPT_NOBODY\fP to 0 (since 7.14.1). If you issue a POST request and then want to make a HEAD or GET using the same re-used handle, you must explictly set the new request type using @@ -569,7 +569,7 @@ Using POST with HTTP 1.1 implies the use of a "Expect: 100-continue" header. You can disable this header with \fICURLOPT_HTTPHEADER\fP as usual. When setting \fICURLOPT_HTTPPOST\fP, it will automatically set -\fICURLOPT_NOBODY\fP to 0. +\fICURLOPT_NOBODY\fP to 0 (since 7.14.1). .IP CURLOPT_REFERER Pass a pointer to a zero terminated string as parameter. It will be used to set the Referer: header in the http request sent to the remote server. This @@ -671,7 +671,7 @@ to GET. usable if a POST, HEAD, PUT or a custom request have been used previously using the same curl handle. When setting \fICURLOPT_HTTPGET\fP to a non-zero value, it will automatically -set \fICURLOPT_NOBODY\fP to 0. +set \fICURLOPT_NOBODY\fP to 0 (since 7.14.1). .IP CURLOPT_HTTP_VERSION Pass a long, set to one of the values described below. They force libcurl to use the specific HTTP versions. This is not sensible to do unless you have a @@ -850,9 +850,8 @@ A non-zero parameter tells the library to not include the body-part in the output. This is only relevant for protocols that have separate header and body parts. On HTTP(S) servers, this will make libcurl do a HEAD request. -To change back to GET, you should use \fICURLOPT_HTTPGET\fP. To change back to -POST, you should use \fICURLOPT_POST\fP. Setting \fICURLOPT_NOBODY\fP to zero -has no effect. +To change request to GET, you should use \fICURLOPT_HTTPGET\fP. Change request +to POST with \fICURLOPT_POST\fP etc. .IP CURLOPT_INFILESIZE When uploading a file to a remote site, this option should be used to tell libcurl what the expected size of the infile is. This value should be passed |