diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-05-03 12:30:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-05-03 12:30:33 +0000 |
commit | 92980376397236a7ca375b7054e831cd86e9a6a9 (patch) | |
tree | de51f9fa4f21ee6190ca1b6f546bdfeff1bb9987 /docs/libcurl | |
parent | f7472075d7d267ef915ad7015e0ac1b97bdf2cc7 (diff) |
document the new 200alias behaviour
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 970600859..cdcdd1b76 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -736,10 +736,9 @@ The linked list should be a fully valid list of struct curl_slist structs, and be properly filled in. Use \fIcurl_slist_append(3)\fP to create the list and \fIcurl_slist_free_all(3)\fP to clean up an entire list. -The alias itself is not parsed for any version strings. So if your alias is -\&"MYHTTP/9.9", Libcurl will not treat the server as responding with HTTP -version 9.9. Instead Libcurl will use the value set by option -\fICURLOPT_HTTP_VERSION\fP. +The alias itself is not parsed for any version strings. Before libcurl 7.16.3, +Libcurl used the value set by option \fICURLOPT_HTTP_VERSION\fP, but starting +wiht 7.16.3 the protocol is assumed to match HTTP 1.0 when an alias matched. .IP CURLOPT_COOKIE Pass a pointer to a zero terminated string as parameter. It will be used to set a cookie in the http request. The format of the string should be |