diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-08-12 20:56:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-08-12 20:56:12 +0000 |
commit | 162f58c53ce51375f444e9870246206eb9af650f (patch) | |
tree | 4f74993510b6cd47b77289ad583bec621207f74d | |
parent | 84c4d96e71c54f410b9582375e92bcc0186c9103 (diff) |
-H needs no CRLF or similar added
-rw-r--r-- | docs/curl.1 | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/curl.1 b/docs/curl.1 index ba7932ffd..4625cd664 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -21,7 +21,7 @@ .\" * $Id$ .\" ************************************************************************** .\" -.TH curl 1 "24 Jun 2005" "Curl 7.14.1" "Curl Manual" +.TH curl 1 "12 Aug 2005" "Curl 7.14.1" "Curl Manual" .SH NAME curl \- transfer a URL .SH SYNOPSIS @@ -421,6 +421,11 @@ set headers without knowing perfectly well what you're doing. Replacing an internal header with one without content on the right side of the colon will prevent that header from appearing. +curl will make sure that each header you add/replace get sent with the proper +end of line marker, you should thus \fBnot\fP add that as a part of the header +content: do not add newlines or carriage returns they will only mess things up +for you. + See also the \fI-A/--user-agent\fP and \fI-e/--referer\fP options. This option can be used multiple times to add/replace/remove multiple headers. |