1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

Added a default headers section and also made some minor details more

up-to-date with recent changes.
This commit is contained in:
Daniel Stenberg 2002-12-09 14:39:01 +00:00
parent 6ca4116555
commit c65e088caf

View File

@ -255,6 +255,9 @@ When It Doesn't Work
possible of your code that uses libcurl, operating system name and version, possible of your code that uses libcurl, operating system name and version,
compiler name and version etc. compiler name and version etc.
If CURLOPT_VERBOSE is not enough, you increase the level of debug data your
application receive by using the CURLOPT_DEBUGFUNCTION.
Getting some in-depth knowledge about the protocols involved is never wrong, Getting some in-depth knowledge about the protocols involved is never wrong,
and if you're trying to do funny things, you might very well understand and if you're trying to do funny things, you might very well understand
libcurl and how to use it better if you study the appropriate RFC documents libcurl and how to use it better if you study the appropriate RFC documents
@ -293,8 +296,8 @@ Upload Data to a Remote Site
curl_easy_setopt(easyhandle, CURLOPT_UPLOAD, TRUE); curl_easy_setopt(easyhandle, CURLOPT_UPLOAD, TRUE);
A few protocols won't behave properly when uploads are done without any prior A few protocols won't behave properly when uploads are done without any prior
knowledge of the expected file size. HTTP PUT is one example [1]. So, set the knowledge of the expected file size. So, set the upload file size using the
upload file size using the CURLOPT_INFILESIZE like this: CURLOPT_INFILESIZE for all known file sizes like this[1]:
curl_easy_setopt(easyhandle, CURLOPT_INFILESIZE, file_size); curl_easy_setopt(easyhandle, CURLOPT_INFILESIZE, file_size);
@ -404,7 +407,7 @@ HTTP POSTing
headers = curl_slist_append(headers, "Content-Type: text/xml"); headers = curl_slist_append(headers, "Content-Type: text/xml");
/* post binary data */ /* post binary data */
curl_easy_setopt(easyhandle, CURLOPT_POSTFIELD, binaryptr); curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDS, binaryptr);
/* set the size of the postfields data */ /* set the size of the postfields data */
curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDSIZE, 23); curl_easy_setopt(easyhandle, CURLOPT_POSTFIELDSIZE, 23);
@ -726,6 +729,35 @@ Persistancy Is The Way to Happiness
CURLOPT_FORBID_REUSE to TRUE. CURLOPT_FORBID_REUSE to TRUE.
HTTP Headers Used by libcurl
When you use libcurl to do HTTP requeests, it'll pass along a series of
headers automaticly. It might be good for you to know and understand these
ones.
Host
This header is required by HTTP 1.1 and even many 1.0 servers and should
be the name of the server we want to talk to. This includes the port
number if anything but default.
Pragma
"no-cache". Tells a possible proxy to not grap a copy from the cache but
to fetch a fresh one.
Accept:
"image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*". Cloned from a
browser once a hundred years ago.
Expect:
When doing multi-part formposts, libcurl will set this header to
"100-continue" to ask the server for an "OK" message before it proceeds
with sending the data part of the post.
Customizing Operations Customizing Operations
There is an ongoing development today where more and more protocols are built There is an ongoing development today where more and more protocols are built
@ -738,20 +770,24 @@ Customizing Operations
libcurl is your friend here too. libcurl is your friend here too.
If just changing the actual HTTP request keyword is what you want, like when CUSTOMREQUEST
GET, HEAD or POST is not good enough for you, CURLOPT_CUSTOMREQUEST is there
for you. It is very simple to use: If just changing the actual HTTP request keyword is what you want, like
when GET, HEAD or POST is not good enough for you, CURLOPT_CUSTOMREQUEST
is there for you. It is very simple to use:
curl_easy_setopt(easyhandle, CURLOPT_CUSTOMREQUEST, "MYOWNRUQUEST"); curl_easy_setopt(easyhandle, CURLOPT_CUSTOMREQUEST, "MYOWNRUQUEST");
When using the custom request, you change the request keyword of the actual When using the custom request, you change the request keyword of the
request you are performing. Thus, by default you make GET request but you can actual request you are performing. Thus, by default you make GET request
also make a POST operation (as described before) and then replace the POST but you can also make a POST operation (as described before) and then
keyword if you want to. You're the boss. replace the POST keyword if you want to. You're the boss.
Modify Headers
HTTP-like protocols pass a series of headers to the server when doing the HTTP-like protocols pass a series of headers to the server when doing the
request, and you're free to pass any amount of extra headers that you think request, and you're free to pass any amount of extra headers that you
fit. Adding headers are this easy: think fit. Adding headers are this easy:
struct curl_slist *headers=NULL; /* init to NULL is important */ struct curl_slist *headers=NULL; /* init to NULL is important */
@ -766,43 +802,59 @@ Customizing Operations
curl_slist_free_all(headers); /* free the header list */ curl_slist_free_all(headers); /* free the header list */
... and if you think some of the internally generated headers, such as ... and if you think some of the internally generated headers, such as
User-Agent:, Accept: or Host: don't contain the data you want them to Accept: or Host: don't contain the data you want them to contain, you can
contain, you can replace them by simply setting them too: replace them by simply setting them too:
headers = curl_slist_append(headers, "User-Agent: 007"); headers = curl_slist_append(headers, "Accept: Agent-007");
headers = curl_slist_append(headers, "Host: munged.host.line"); headers = curl_slist_append(headers, "Host: munged.host.line");
If you replace an existing header with one with no contents, you will prevent Delete Headers
the header from being sent. Like if you want to completely prevent the
"Accept:" header to be sent, you can disable it with code similar to this: If you replace an existing header with one with no contents, you will
prevent the header from being sent. Like if you want to completely prevent
the "Accept:" header to be sent, you can disable it with code similar to
this:
headers = curl_slist_append(headers, "Accept:"); headers = curl_slist_append(headers, "Accept:");
Both replacing and cancelling internal headers should be done with careful Both replacing and cancelling internal headers should be done with careful
consideration and you should be aware that you may violate the HTTP protocol consideration and you should be aware that you may violate the HTTP
when doing so. protocol when doing so.
Enforcing chunked transfer-encoding
By making sure a request uses the custom header "Transfer-Encoding:
chunked" when doing a non-GET HTTP operation, libcurl will switch over to
"chunked" upload, even though the size of the data to upload might be
known. By default, libcurl usually switches over to chunked upload
automaticly if the upload data size is unknown.
HTTP Version
There's only one aspect left in the HTTP requests that we haven't yet There's only one aspect left in the HTTP requests that we haven't yet
mentioned how to modify: the version field. All HTTP requests includes the mentioned how to modify: the version field. All HTTP requests includes the
version number to tell the server which version we support. libcurl speak version number to tell the server which version we support. libcurl speak
HTTP 1.1 by default. Some very old servers don't like getting 1.1-requests HTTP 1.1 by default. Some very old servers don't like getting 1.1-requests
and when dealing with stubborn old things like that, you can tell libcurl to and when dealing with stubborn old things like that, you can tell libcurl
use 1.0 instead by doing something like this: to use 1.0 instead by doing something like this:
curl_easy_setopt(easyhandle, CURLOPT_HTTP_VERSION, CURLHTTP_VERSION_1_0); curl_easy_setopt(easyhandle, CURLOPT_HTTP_VERSION,
CURLHTTP_VERSION_1_0);
Not all protocols are HTTP-like, and thus the above may not help you when you FTP Custom Commands
want to make for example your FTP transfers to behave differently.
Not all protocols are HTTP-like, and thus the above may not help you when
you want to make for example your FTP transfers to behave differently.
Sending custom commands to a FTP server means that you need to send the Sending custom commands to a FTP server means that you need to send the
comands exactly as the FTP server expects them (RFC959 is a good guide here), comands exactly as the FTP server expects them (RFC959 is a good guide
and you can only use commands that work on the control-connection alone. All here), and you can only use commands that work on the control-connection
kinds of commands that requires data interchange and thus needs a alone. All kinds of commands that requires data interchange and thus needs
data-connection must be left to libcurl's own judgement. Also be aware that a data-connection must be left to libcurl's own judgement. Also be aware
libcurl will do its very best to change directory to the target directory that libcurl will do its very best to change directory to the target
before doing any transfer, so if you change directory (with CWD or similar) directory before doing any transfer, so if you change directory (with CWD
you might confuse libcurl and then it might not attempt to transfer the file or similar) you might confuse libcurl and then it might not attempt to
in the correct remote directory. transfer the file in the correct remote directory.
A little example that deletes a given file before an operation: A little example that deletes a given file before an operation:
@ -815,24 +867,32 @@ Customizing Operations
curl_slist_free_all(headers); /* free the header list */ curl_slist_free_all(headers); /* free the header list */
If you would instead want this operation (or chain of operations) to happen If you would instead want this operation (or chain of operations) to
_after_ the data transfer took place the option to curl_easy_setopt() would happen _after_ the data transfer took place the option to
instead be called CURLOPT_POSTQUOTE and used the exact same way. curl_easy_setopt() would instead be called CURLOPT_POSTQUOTE and used the
exact same way.
The custom FTP command will be issued to the server in the same order they The custom FTP command will be issued to the server in the same order they
are added to the list, and if a command gets an error code returned back from are added to the list, and if a command gets an error code returned back
the server, no more commands will be issued and libcurl will bail out with an from the server, no more commands will be issued and libcurl will bail out
error code (CURLE_FTP_QUOTE_ERROR). Note that if you use CURLOPT_QUOTE to with an error code (CURLE_FTP_QUOTE_ERROR). Note that if you use
send commands before a transfer, no transfer will actually take place when a CURLOPT_QUOTE to send commands before a transfer, no transfer will
quote command has failed. actually take place when a quote command has failed.
If you set the CURLOPT_HEADER to true, you will tell libcurl to get If you set the CURLOPT_HEADER to true, you will tell libcurl to get
information about the target file and output "headers" about it. The headers information about the target file and output "headers" about it. The
will be in "HTTP-style", looking like they do in HTTP. headers will be in "HTTP-style", looking like they do in HTTP.
The option to enable headers or to run custom FTP commands may be useful to The option to enable headers or to run custom FTP commands may be useful
combine with CURLOPT_NOBODY. If this option is set, no actual file content to combine with CURLOPT_NOBODY. If this option is set, no actual file
transfer will be performed. content transfer will be performed.
FTP Custom CUSTOMREQUEST
If you do what list the contents of a FTP directory using your own defined
FTP command, CURLOPT_CUSTOMREQUEST will do just that. "NLST" is the
default one for listing directories but you're free to pass in your idea
of a good alternative.
Cookies Without Chocolate Chips Cookies Without Chocolate Chips
@ -1007,19 +1067,30 @@ SSL, Certificates and Other Tricks
[ seeding, passwords, keys, certificates, ENGINE, ca certs ] [ seeding, passwords, keys, certificates, ENGINE, ca certs ]
Multiple Transfers Using the multi Interface
The easy interface as described in detail in this document is a synchronous
interface that transfers one file at a time and doesn't return until its
done.
The multi interface on the other hand, allows your program to transfer
multiple files in both directions at the same time, without forcing you to
use multiple threads.
[fill in lots of more multi stuff here]
Future Future
[ multi interface, sharing between handles, mutexes, pipelining ] [ sharing between handles, mutexes, pipelining ]
----- -----
Footnotes: Footnotes:
[1] = HTTP PUT without knowing the size prior to transfer is indeed possible, [1] = libcurl 7.10.3 and later have the ability to switch over to chunked
but libcurl does not support the chunked transfers on uploading that is Tranfer-Encoding in cases were HTTP uploads are done with data of an
necessary for this feature to work. We'd gratefully appreciate patches unknown size.
that bring this functionality...
[2] = This happens on Windows machines when libcurl is built and used as a [2] = This happens on Windows machines when libcurl is built and used as a
DLL. However, you can still do this on Windows if you link with a static DLL. However, you can still do this on Windows if you link with a static