aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl
diff options
context:
space:
mode:
authorPeter Gal <galpeter@inf.u-szeged.hu>2013-06-07 16:39:16 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-06-08 00:15:40 +0200
commitc53fb36b0ce708c9418bdd9b44075f76f821dfcc (patch)
tree14f3f27fc04ce48ed1a6998e9d2af6731384d170 /docs/libcurl
parentdc19e656b5acd533e833971ac415a5f426b99c63 (diff)
curl_easy_setopt.3: HTTP header with no content
Update the documentation on how to specify a HTTP header with no content.
Diffstat (limited to 'docs/libcurl')
-rw-r--r--docs/libcurl/curl_easy_setopt.310
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3
index 742f3a18a..3b804a1f6 100644
--- a/docs/libcurl/curl_easy_setopt.3
+++ b/docs/libcurl/curl_easy_setopt.3
@@ -1436,10 +1436,12 @@ internally, your added one will be used instead. If you add a header with no
content as in 'Accept:' (no data on the right side of the colon), the
internally used header will get disabled. Thus, using this option you can add
new headers, replace internal headers and remove internal headers. To add a
-header with no content, make the content be two quotes: \&"". The headers
-included in the linked list must not be CRLF-terminated, because curl adds
-CRLF after each header item. Failure to comply with this will result in
-strange bugs because the server will most likely ignore part of the headers
+header with no content (nothing to the right side of the colon), use the
+form 'MyHeader;' (note the ending semicolon).
+
+The headers included in the linked list must not be CRLF-terminated, because
+curl adds CRLF after each header item. Failure to comply with this will result
+in strange bugs because the server will most likely ignore part of the headers
you specified.
The first line in a request (containing the method, usually a GET or POST) is