Daniel Stenberg
6e376532b0
- Internet Explorer had a broken HTTP digest authentication before v7 and
...
there are servers "out there" that relies on the client doing this broken
Digest authentication. Apache even comes with an option to work with such
broken clients.
The difference is only for URLs that contain a query-part (a '?'-letter and
text to the right of it).
libcurl now supports this quirk, and you enable it by setting the
CURLAUTH_DIGEST_IE bit in the bitmask you pass to the CURLOPT_HTTPAUTH or
CURLOPT_PROXYAUTH options. They are thus individually controlled to server
and proxy.
2008-12-10 23:13:31 +00:00
Dan Fandrich
32f78136b2
Documented CURLOPT_CONNECT_ONLY as being useful only on HTTP URLs.
2008-12-09 22:00:18 +00:00
Daniel Stenberg
5d791838d2
mention the speed unit for the _SPEED_LARGE options from bug #2226722
2008-11-05 21:48:00 +00:00
Dan Fandrich
9c86097286
Mention more restrictions on timeouts when using signals
2008-10-28 23:48:05 +00:00
Yang Tse
98b13037e7
remove some spurious line-endings
2008-10-17 03:59:02 +00:00
Dan Fandrich
1d12b1fa1e
CURLOPT_POST301 => CURLOPT_POSTREDIR
2008-10-16 21:02:38 +00:00
Daniel Stenberg
a9a4300a36
- Igor Novoseltsev added CURLOPT_PROXYUSER and CURLOPT_PROXYPASSWORD that then
...
make CURLOPT_PROXYUSERPWD sort of deprecated. The primary motive for adding
these new options is that they have no problems with the colon separator
that the CURLOPT_PROXYUSERPWD option does.
2008-10-16 20:21:22 +00:00
Daniel Stenberg
86c5d02a5e
correct version number for the certinfo addition
2008-10-16 12:29:32 +00:00
Dan Fandrich
6887106ff7
Fixed a leftover reference to CURLOPT_FTP_SSL (thanks to Carlos Alloatti
...
for spotting it).
2008-10-09 20:03:04 +00:00
Daniel Stenberg
08cf6780ba
- Igor Novoseltsev brought a patch that introduced two new options to
...
curl_easy_setopt: CURLOPT_USERNAME and CURLOPT_PASSWORD that sort of
deprecates the good old CURLOPT_USERPWD since they allow applications to set
the user name and password independently and perhaps more importantly allow
both to contain colon(s) which CURLOPT_USERPWD doesn't fully support.
2008-10-08 10:39:43 +00:00
Daniel Stenberg
bc90fefb5b
SOCKS5_RESOLVE_LOCAL was just never added as an option!
2008-09-07 21:33:50 +00:00
Daniel Stenberg
4c9768565e
- Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By
...
enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS
or FTPS), libcurl will gather lots of server certificate info and that info
can then get extracted by a client after the request has completed with
curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing
helped me test and smoothen out this feature.
Unfortunately, this feature currently only works with libcurl built to use
OpenSSL.
This feature was sponsored by networking4all.com - thanks!
2008-09-05 14:29:21 +00:00
Dan Fandrich
e082d2403c
Fixed a couple of typos
2008-08-28 02:32:41 +00:00
Dan Fandrich
6768e81d5d
Added an edited version of Vincent Le Normand's documentation of SFTP quote
...
commands to the man pages.
2008-08-20 19:45:43 +00:00
Daniel Stenberg
5aed78e183
- Phil Blundell added the CURLOPT_SCOPE option, as well as adjusted the URL
...
parser to allow numerical IPv6-addresses to be specified with the scope
given, as per RFC4007 - with a percent letter that itself needs to be URL
escaped. For example, for an address of fe80::1234%1 the HTTP URL is:
"http://[fe80::1234%251]/ "
2008-07-30 21:55:26 +00:00
Dan Fandrich
5373289574
Eliminated references to TRUE and FALSE since those identifiers aren't
...
defined by the libcurl API. Also changed curl_easy_setopt examples to
pass longs where appropriate.
2008-07-23 22:02:03 +00:00
Daniel Stenberg
7d0eabaa80
- I went over the curl_easy_setopt man page and replaced most references to
...
non-zero with the fixed value of 1. We should strive at making options
support '1' for enabling them mentioned explicitly, as that then will allow
us for to extend them in the future without breaking older programs.
2008-07-23 20:53:04 +00:00
Daniel Stenberg
6b7ccde156
(Added in the section for CURLOPT_DNS_CACHE_TIMEOUT, pointed out on the
...
curl-library list on July 9th 2008 by Mathew Hounsell)
NOTE: the name resolve functions of various libc implementations don't re-read
name server information unless explicitly told so (by for example calling
Ires_init(3). This may cause libcurl to keep using the older server even
if DHCP has updated the server info, and this may look like a DNS cache issue
to the casual libcurl-app user.
2008-07-10 22:24:11 +00:00
Daniel Stenberg
9c8997cbe4
7.19.0 is next
2008-06-08 22:00:42 +00:00
Daniel Stenberg
c6efb82526
the next release is now called 7.19.0
2008-06-08 21:04:46 +00:00
Daniel Stenberg
621c2b9015
- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_ISSUERCERT, for
...
OpenSSL, NSS and GnuTLS-built libcurls.
2008-06-06 20:52:32 +00:00
Daniel Stenberg
e1c456407e
mention added in 7.18.3
2008-06-06 18:40:58 +00:00
Daniel Stenberg
3fe8251dfb
- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, for
...
OpenSSL, NSS and GnuTLS-built libcurls.
2008-06-06 18:40:21 +00:00
Daniel Stenberg
2045c79e37
Nikolai Kondrashov provided a clarification for CURLOPT_HEADERFUNCTION
2008-05-24 11:19:51 +00:00
Daniel Stenberg
74bb59fa57
clarify the COOKIE option a bit
2008-04-10 09:03:26 +00:00
Daniel Stenberg
a782c3e368
spell it out loudly and clearly that CURLOPT_SSL_CTX_FUNCTION is only
...
functional if libcurl is built against OpenSSL
2008-03-25 19:17:26 +00:00
Daniel Stenberg
9b48991ebd
Recommend passing a 1 as parameter to CURLOPT_SSLENGINE_DEFAULT rather than
...
a "dummy" just to get things as fixed as possible in case we ever get the urge
to change this to actually mean something.
2008-03-11 12:18:00 +00:00
Michal Marek
7a8a20416f
- Added a type checking macro for curl_easy_setopt(), needs gcc-4.3 and only
...
works in C mode atm (http://curl.haxx.se/mail/lib-2008-02/0267.html ,
http://curl.haxx.se/mail/lib-2008-02/0292.html )
2008-03-11 07:37:40 +00:00
Gunter Knauf
f9a6062081
applied patch to disable SSLv2 by default; discussion:
...
http://sourceforge.net/tracker/index.php?func=detail&aid=1767276&group_id=976&atid=350976
Submitted by Kaspar Brand.
2008-02-19 23:10:07 +00:00
Daniel Stenberg
08adf67969
Daniel Egger made CURLOPT_RANGE work on file:// URLs the very same way it
...
already worked for FTP:// URLs
2008-01-11 14:20:41 +00:00
Daniel Stenberg
18faa50940
Georg Lippitsch brought CURLOPT_SEEKFUNCTION and CURLOPT_SEEKDATA to allow
...
libcurl to seek in a given input stream. This is particularly important when
doing upload resumes when there's already a huge part of the file present
remotely. Before, and still if this callback isn't used, libcurl will read
and through away the entire file up to the point to where the resuming
begins (which of course can be a slow opereration depending on file size,
I/O bandwidth and more). This new function will also be preferred to get
used instead of the CURLOPT_IOCTLFUNCTION for seeking back in a stream when
doing multi-stage HTTP auth with POST/PUT.
2008-01-10 10:30:19 +00:00
Daniel Stenberg
de23b98522
Introducing curl_easy_pause() and new magic return codes for both the read
...
and the write callbacks that now can make a connection's reading and/or
writing get paused.
2008-01-08 14:52:05 +00:00
Daniel Stenberg
b430576436
Based on further discussion on curl-library, I reverted yesterday's SOCKS5
...
code to instead introduce support for a new proxy type called
CURLPROXY_SOCKS5_HOSTNAME that is used to send the host name to the proxy
instead of IP address and there's thus no longer any need for a new
curl_easy_setopt() option.
The default SOCKS5 proxy is again back to sending the IP address to the
proxy. The new curl command line option for enabling sending host name to a
SOCKS5 proxy is now --socks5-hostname.
2008-01-05 22:04:18 +00:00
Daniel Stenberg
2e42b0a252
Based on Maxim Perenesenko's patch, we now do SOCKS5 operations and let the
...
proxy do the host name resolving and only if --socks5ip (or
CURLOPT_SOCKS5_RESOLVE_LOCAL) is used we resolve the host name locally and
pass on the IP address only to the proxy.
2008-01-04 23:01:00 +00:00
Daniel Stenberg
a46b40b7fd
Richard Atterer brought a patch that added support for SOCKS4a proxies, which
...
is an inofficial PROXY4 variant that sends the hostname to the proxy instead
of the resolved address (which is already supported by SOCKS5). --socks4a is
the curl command line option for it and CURLOPT_PROXYTYPE can now be set to
CURLPROXY_SOCKS4A as well.
2008-01-02 21:40:11 +00:00
Daniel Stenberg
8cdff55b80
mention how to enable chunked encoding for POSTs
2007-12-08 22:52:39 +00:00
Daniel Stenberg
1c93e75375
Michal Marek introduced CURLOPT_PROXY_TRANSFER_MODE which is used to control
...
the appending of the "type=" thing on FTP URLs when they are passed to a
HTTP proxy. Some proxies just don't like that appending (which is done
unconditionally in 7.17.1), and some proxies treat binary/ascii transfers
better with the appending done!
2007-12-02 23:38:23 +00:00
Daniel Stenberg
e2b2a84497
clarify somewhat what happens to some data when a share is set to be used
2007-11-20 23:16:19 +00:00
Dan Fandrich
a83b5d1b67
Mention first version with CURLOPT_COPYPOSTFIELDS.
...
Don't confuse NUL with NULL.
2007-10-15 21:19:40 +00:00
Patrick Monnerat
a005243908
Fix dynamic CURLOPT_POSTFIELDS bug: back to static.
...
CURLOPT_COPYPOSTFIELDS option added for dynamic.
Fix some OS400 features.
2007-10-15 18:32:01 +00:00
Daniel Stenberg
fc70b2f916
Add a paragraph about CURLOPT_CUSTOMREQUEST not actually changing libcurl's
...
behavior, it only changes the actual request method keyword and this is not
always what the user/app wants.
2007-10-09 14:53:50 +00:00
Daniel Stenberg
606af3024b
Alexey Pesternikov documented CURLOPT_OPENSOCKETDATA and
...
CURLOPT_OPENSOCKETFUNCTION
2007-10-05 15:16:18 +00:00
Daniel Stenberg
4449bd9b4d
Michael Wallner made the CULROPT_COOKIELIST option support a new magic
...
string: "FLUSH". Using that will cause libcurl to flush its cookies to the
CURLOPT_COOKIEJAR file.
2007-10-05 14:37:33 +00:00
Daniel Stenberg
51c6a5d43b
Based on a patch brought by Johnny Luong, libcurl now offers
...
CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 and the curl tool --hostpubmd5. They both make
the SCP or SFTP connection verify the remote host's md5 checksum of the public
key before doing a connect, to reduce the risk of a man-in-the-middle attack.
2007-10-03 08:00:42 +00:00
Daniel Stenberg
0489081d3f
CURLOPT_POST301 section, added by Philip Langdale
2007-10-02 09:56:52 +00:00
Dan Fandrich
3fa60164af
Renamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED.
...
Renamed the curl_ftpssl enum to curl_usessl and its enumerated constants,
creating macros for backward compatibility.
2007-08-31 19:36:32 +00:00
Dan Fandrich
9f44a95522
Renamed several libcurl error codes and options to make them more general
...
and allow reuse by multiple protocols. Several unused error codes were
removed. In all cases, macros were added to preserve source (and binary)
compatibility with the old names. These macros are subject to removal at
a future date, but probably not before 2009. An application can be
tested to see if it is using any obsolete code by compiling it with the
CURL_NO_OLDIES macro defined.
Documented some newer error codes in libcurl-error(3)
2007-08-30 20:34:57 +00:00
Daniel Stenberg
c1b9356081
Usage of the BCURLOPT_PROGRESSFUNCTION callback is not recommended when using
...
the multi interface, but having the comment in here caused more questions than
we fixed problems so I remove it now. It still works fine.
2007-08-07 21:14:31 +00:00
Daniel Stenberg
5a6dcdc36c
clarify that setting POSTFIELDS to NULL or "" is not enough to make a zero byte
...
POST
2007-08-02 13:26:06 +00:00
Daniel Stenberg
50c10aa5bf
Patrick Monnerat and I modified libcurl so that now it *copies* all strings
...
passed to it with curl_easy_setopt()! Previously it has always just refered
to the data, forcing the user to keep the data around until libcurl is done
with it. That is now history and libcurl will instead clone the given
strings and keep private copies.
2007-08-01 21:20:01 +00:00
Dan Fandrich
000fdc6b99
Document pwd as an sftp quote command for curl(1), and show it as
...
lower case for consistency since sftp commands are case insensitive.
2007-07-20 17:29:43 +00:00
James Housley
5251c45187
SFTP also supports PWD
2007-07-18 23:21:32 +00:00
Dan Fandrich
d9b5f327bf
Added the list of sftp quote commands.
2007-07-18 22:23:07 +00:00
Dan Fandrich
5e1cd407a3
Added the first libcurl version to which the SSH options were added.
2007-07-11 19:21:38 +00:00
James Housley
55cd28283c
Fix problem with the indenting noticed by Pavel
2007-07-02 17:22:51 +00:00
Daniel Stenberg
fcfffbe2f2
mention the old name
2007-07-01 22:03:47 +00:00
Daniel Stenberg
54967d2a3a
Thomas J. Moore provided a patch that introduces Kerberos5 support in
...
libcurl. This also makes the options change name to --krb (from --krb4) and
CURLOPT_KRBLEVEL (from CURLOPT_KRB4LEVEL) but the old names are still
2007-07-01 22:01:18 +00:00
James Housley
4cd7f85410
Add two new options for the SFTP/SCP/FILE protocols: CURLOPT_NEW_FILE_PERMS
...
and CURLOPT_NEW_DIRECTORY_PERMS. These control the premissions for files
and directories created on the remote server. CURLOPT_NEW_FILE_PERMS
defaults to 0644 and CURLOPT_NEW_DIRECTORY_PERMS defaults to 0755
2007-06-27 20:15:48 +00:00
James Housley
17798ed740
Update documentation to reflect SFTP's ability to create directories on
...
upload. Some text provieded by Tom Regner
2007-06-13 15:02:34 +00:00
Daniel Stenberg
a49e78d9b7
Added CURLMOPT_MAXCONNECTS which is a curl_multi_setopt() option for setting
...
the maximum size of the connection cache maximum size of the multi handle.
2007-05-30 20:04:44 +00:00
Dan Fandrich
ea43bb013b
Added support for quote commands before a transfer using SFTP and test
...
case 614.
Allow SFTP quote commands chmod, chown, chgrp to set a value of 0.
2007-05-15 00:28:50 +00:00
Daniel Stenberg
1b7f00b2a6
CURLE_FTP_COULDNT_STOR_FILE is now known as CURLE_UPLOAD_FAILED. This is
...
because I just made SCP uploads return this value if the file size of
the upload file isn't given with CURLOPT_INFILESIZE*. Docs updated to
reflect this news, and a define for the old name was added to the public
header file.
2007-05-08 11:34:31 +00:00
Dan Fandrich
0b67ee7bad
Fixed a few typos.
2007-05-03 19:12:45 +00:00
Daniel Stenberg
9298037639
document the new 200alias behaviour
2007-05-03 12:30:33 +00:00
Dan Fandrich
0043e87014
Added --pubkey option to curl and made --key also work for SCP/SFTP,
...
plus made --pass work on an SSH private key as well.
2007-03-23 17:59:40 +00:00
Daniel Stenberg
d76a734043
RECV is for download
2007-03-12 13:20:39 +00:00
Daniel Stenberg
c8cd13337e
reverted the pselect patch => http://curl.haxx.se/mail/lib-2007-03/0100.html
2007-03-11 09:11:29 +00:00
Daniel Stenberg
dbaf4f9361
- Bryan Henderson introduces two things:
...
1) the progress callback gets called more frequently (at times)
2) libcurl *might* call the callback when it receives a signal
2007-03-10 12:11:21 +00:00
Daniel Stenberg
8b5295d003
setting CURLOPT_PROXY to "" explicitly disables the use of a proxy (even if
...
there is an environment variable set)
2007-02-22 21:21:05 +00:00
Linus Nielsen Feltzing
2f5e99ca02
New FTP CCC functionality - adds passive and active mode to accomodate for different server behaviour
2007-02-20 22:02:11 +00:00
Daniel Stenberg
7f70dbcad5
Rob Crittenden added support for NSS (Network Security Service) for the
...
SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/
2007-02-12 22:32:37 +00:00
Daniel Stenberg
28b932fb4e
- Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent
...
to the debug callback.
- Shmulik Regev added CURLOPT_HTTP_CONTENT_DECODING and
CURLOPT_HTTP_TRANSFER_DECODING that if set to zero will disable libcurl's
internal decoding of content or transfer encoded content. This may be
preferable in cases where you use libcurl for proxy purposes or similar. The
command line tool got a --raw option to disable both at once.
2007-02-12 21:13:47 +00:00
Daniel Stenberg
91386937ff
- Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS
...
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the
timeouts with millisecond resolution instead. The only restriction to that
is the alarm() (sometimes) used to abort name resolves as that uses full
seconds. I fixed the FTP response timeout part of the patch.
Internally we now count and keep the timeouts in milliseconds but it also
means we multiply set timeouts with 1000. The effect of this is that no
timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which
equals 24.86 days. We probably couldn't before either since the code did
*1000 on the timeout values on several places already.
2007-02-05 22:51:32 +00:00
Daniel Stenberg
0b4bdcf18f
clarify the INFILESIZE option(s)
2007-01-17 08:57:20 +00:00
Daniel Stenberg
4750e6f3c5
- Linus Nielsen Feltzing introduced the --ftp-ssl-ccc command line option to
...
curl that uses the new CURLOPT_FTP_SSL_CCC option in libcurl. If enabled, it
will make libcurl shutdown SSL/TLS after the authentication is done on a
FTP-SSL operation.
2007-01-05 23:11:14 +00:00
Daniel Stenberg
439b84c782
CURLOPT_CAPATH is OpenSSL-only
2006-12-21 09:36:03 +00:00
Daniel Stenberg
ae76ebe2d1
Sh Diao reported that CURLOPT_CLOSEPOLICY doesn't work, and indeed, there is
...
no code present in the library that receives the option. Since it was not
possible to use, we know that no current users exist and thus we simply
removed it from the docs and made the code always use the default path of
the code.
2006-12-05 16:04:01 +00:00
Daniel Stenberg
675f6a8901
mention the new options
2006-11-02 22:10:18 +00:00
Daniel Stenberg
cde5e35d9b
Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the
...
case when 401 or 407 are returned, *IF* no auth credentials have been given.
The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401
and 407 cases when auth credentials is given, but we've now covered this
somewhat more.
You might get some amounts of headers transferred before this situation is
detected, like for when a "100-continue" is received as a response to a
POST/PUT and a 401 or 407 is received immediately afterwards.
Added test 281 to verify this change.
2006-10-25 20:40:14 +00:00
Daniel Stenberg
5e0d9aea32
Support for FTP third party transfers is now dropped
2006-09-30 20:31:11 +00:00
Daniel Stenberg
d569693f24
Armel Asselin's fix for the RESUME_FROM docu
2006-09-26 10:38:24 +00:00
Daniel Stenberg
29dc39fce1
- Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a
...
handle that is part of a multi handle first removes the handle from the
stack.
- Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL
session-ID re-use on demand since there obviously are broken servers out
there that misbehave with session-IDs used.
2006-09-11 17:18:18 +00:00
Daniel Stenberg
9cc3795f1a
Mention that CURLOPT_MAX_RECV/SEND* were added in 7.15.5
2006-09-08 12:46:41 +00:00
Daniel Stenberg
5acadc9cd7
David McCreedy added CURLOPT_SOCKOPTFUNCTION and CURLOPT_SOCKOPTDATA to
...
allow applications to set their own socket options.
2006-08-29 14:39:33 +00:00
Daniel Stenberg
da48a6ba87
clarify the string syntax support in the CURLOPT_PROXY section
2006-08-23 21:49:44 +00:00
Daniel Stenberg
b04cbebf86
option name spell fix
2006-08-09 20:54:17 +00:00
Daniel Stenberg
1eedad27a2
Armel Asselin made the CURLOPT_PREQUOTE option work fine even when
...
CURLOPT_NOBODY is set true. PREQUOTE is then run roughly at the same place
in the command sequence as it would have run if there would've been a
transfer.
2006-08-08 22:56:46 +00:00
Daniel Stenberg
fbcdc192d5
a CURLOPT_PROGRESSFUNCTION clarification
2006-08-02 09:33:32 +00:00
Daniel Stenberg
2527b53019
Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curl
...
tool option named --ftp-alternative-to-user. It provides a mean to send a
particular command if the normal USER/PASS approach fails.
2006-07-25 22:45:21 +00:00
Daniel Stenberg
dfe1884c25
Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and
...
CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed
to send or receive data. This kind of adds the the command line tool's
option --limit-rate to the library.
The rate limiting logic in the curl app is now removed and is instead
provided by libcurl itself. Transfer rate limiting will now also work for -d
and -F, which it didn't before.
2006-06-22 21:36:53 +00:00
Daniel Stenberg
4cb30a3057
bad syntax
2006-06-20 07:03:29 +00:00
Daniel Stenberg
606562aa7e
Michael Wallner provided a patch that allows "SESS" to be set with
...
CURLOPT_COOKIELIST, which then makes all session cookies get cleared. (slightly
edited by me, and the re-indent in cookie.c was also done by me)
2006-05-24 22:46:38 +00:00
Daniel Stenberg
fede784fa2
the new conversion stuff documented (mostly by David McCreedy)
2006-04-19 09:08:15 +00:00
Daniel Stenberg
260b88c197
mention RFC 2396 for URL syntax spec
2006-04-09 22:40:49 +00:00
Daniel Stenberg
bac52f3969
--ftp-method and CURLOPT_FTP_FILEMETHOD are now documented and usable
2006-03-14 00:05:15 +00:00
Daniel Stenberg
aa50a00898
point out that CAINFO points out a file name by default
2006-03-02 22:09:30 +00:00
Daniel Stenberg
a15d107dde
Peter Su added support for SOCKS4 proxies. Enable this by setting the proxy
...
type to the already provided type CURLPROXY_SOCKS4.
I added a --socks4 option that works like the current --socks5 option but
instead use the socks4 protocol.
2006-02-21 07:46:41 +00:00
Daniel Stenberg
87bcb6f377
Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that
...
an app can use to let libcurl only connect to a remote host and then extract
the socket from libcurl. libcurl will then not attempt to do any transfer at
all after the connect is done.
2006-02-11 22:35:16 +00:00
Daniel Stenberg
2fbf94b0f3
Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the
...
curl tool with --local-port. Plain and simply set the range of ports to bind
the local end of connections to. Implemented on to popular demand.
Not extensively tested. Please let me know how it works.
2006-01-30 08:24:07 +00:00
Daniel Stenberg
b55b780d7b
Cyrill Osterwalder pointed out that sending "" as data in a header is in
...
fact equal to a blank one according to the spec.
2006-01-27 15:01:10 +00:00
Daniel Stenberg
bda1e9aeab
Made the copyright year match the latest modification's year.
2006-01-09 13:17:14 +00:00
Daniel Stenberg
e1e753179a
use the proper dash
2006-01-08 22:55:13 +00:00
Daniel Stenberg
c1a06d858d
CURLOPT_PROGRESSFUNCTION is really not a good idea when using the multi
...
interface
2006-01-03 15:53:29 +00:00
Daniel Stenberg
2d71e22f08
fix CURLOPT_FAILONERROR error, pointed out by Shailesh N. Humbad
2005-12-10 22:12:44 +00:00
Daniel Stenberg
4022a60ea7
I extended a patch from David Shaw to make libcurl _always_ provide an error
...
string in the given error buffer to address the flaw mention on 21 sep 2005.
2005-11-17 14:29:54 +00:00
Daniel Stenberg
89024febde
mention how to set domain when using NTLM
2005-11-11 08:52:29 +00:00
Daniel Stenberg
966fa848a0
Nis Jorgensen filed bug report #1338648
...
(http://curl.haxx.se/bug/view.cgi?id=1338648 ) which really is more of a
feature request, but anyway. It pointed out that --max-redirs did not allow
it to be set to 0, which then would return an error code on the first
Location: found. Based on Nis' patch, now libcurl supports CURLOPT_MAXREDIRS
set to 0, or -1 for infinity. Added test case 274 to verify.
2005-10-27 22:05:38 +00:00
Daniel Stenberg
82a4c2bce3
Slight editing of wording in the CURLOPT_SSL_VERIFYHOST section.
2005-10-13 21:49:28 +00:00
Daniel Stenberg
b433e4a1e7
NTLM requires windows or OpenSSL. If you build with GnuTLS for example you
...
do not get NTLM support enabled.
2005-10-13 06:20:43 +00:00
Daniel Stenberg
da192f7955
clarify what the default read callback does and how it uses the READDATA
...
option
2005-09-22 10:15:10 +00:00
Daniel Stenberg
6af5ea38ce
clarified ERRORBUFFER - some errors just don't write a string even though
...
they should. And I removed all uses 'Note' (as they are pretty useless) and
did some other language and phrasing cleanups.
2005-09-21 06:59:01 +00:00
Daniel Stenberg
774dab58f6
mention what WRITEFUNCTION and WRITEDATA do by default
2005-09-21 06:12:41 +00:00
Daniel Stenberg
0b7f5ad508
CURLOPT_BUFFERSIZE clarification
2005-09-12 20:36:17 +00:00
Daniel Stenberg
e369270f88
7.14.2 actually
2005-09-04 05:23:08 +00:00
Daniel Stenberg
7e845e7cfd
Added FTP_SKIP_PASV_IP and --ftp-skip-pasv-ip
2005-09-04 05:16:06 +00:00
Daniel Stenberg
0177ed6f03
clarify that the ctxfunc is called on all new connects
2005-09-01 13:41:29 +00:00
Daniel Stenberg
54887af471
"Added in 7.14.1" notes and some minor edits
2005-08-25 07:06:50 +00:00
Daniel Stenberg
a4773fcbbb
Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible
...
from the command line tool with --ignore-content-length. This will make it
easier to download files from Apache 1.x (and similar) servers that are
still having problems serving files larger than 2 or 4 GB. When this option
is enabled, curl will simply have to wait for the server to close the
connection to signal end of transfer. I wrote test case 269 that runs a
simple test that this works.
2005-08-24 10:57:28 +00:00
Daniel Stenberg
747a05844d
Using CURLOPT_COOKIEFILE serveral times add more files to read from.
2005-08-19 21:38:44 +00:00
Daniel Stenberg
9a264bf610
mention that the NOBODY reset thing is added in 7.14.1
2005-08-01 11:56:03 +00:00
Daniel Stenberg
84c2184909
CURLOPT_COOKIELIST change since it no longer modifies the input string contents
2005-07-30 08:27:51 +00:00
Daniel Stenberg
726b9e2240
If any of the options CURLOPT_HTTPGET, CURLOPT_POST and CURLOPT_HTTPPOST is
...
set to 1, CURLOPT_NOBODY will now automatically be set to 0.
2005-07-27 22:29:50 +00:00
Daniel Stenberg
2236ba0d20
Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a
...
simple interface to extracting and setting cookies in libcurl's internal
"cookie jar". See the new cookie_interface.c example code.
2005-07-27 22:17:14 +00:00
Daniel Stenberg
ee0666c8df
better description for HEADERFUNCTION
2005-07-13 09:46:37 +00:00
Daniel Stenberg
a8a8ae2e92
elaborate a bit on how to deal with chunked-encoded trailers that now are
...
passed to the app using the header callback
2005-07-13 09:37:22 +00:00
Daniel Stenberg
36461fb2aa
clarify that ftp ascii transfers don't do right in current libcurl
2005-06-26 10:08:08 +00:00
Daniel Stenberg
d8dcd5e472
added docs about the new proxy string support
2005-06-23 23:07:07 +00:00
Daniel Stenberg
fa4cd8868c
remove blank lines
2005-05-12 21:56:26 +00:00
Daniel Stenberg
8c573ca7f3
CURLOPT_SSLVERSION clarified
2005-05-12 21:49:42 +00:00
Daniel Stenberg
d12b44204b
Bryan Henderson's fine update of SSL_VERIFYPEER and SSL_VERIFYHOST
2005-05-02 07:28:40 +00:00
Daniel Stenberg
6a27449922
digest works in the proxyauth too
2005-04-18 14:32:48 +00:00
Daniel Stenberg
6f752c64bc
Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activate
...
the cookie "engine" without having to provide an empty or non-existing file.
2005-03-04 00:26:50 +00:00
Daniel Stenberg
177dbc7be0
Ian Ford asked about support for the FTP command ACCT, and I discovered it is
...
present in RFC959... so now (lib)curl supports it as well. --ftp-account and
CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account
string after PASS have been sent away. The client responds with "ACCT [account
string]".) Added test case 228 and 229 to verify the functionality. Updated
the test FTP server to support ACCT somewhat.
2005-01-25 22:13:12 +00:00
Daniel Stenberg
7e42cb61f7
FTP third transfer support overhaul. See CHANGES for details.
2005-01-21 09:32:32 +00:00
Daniel Stenberg
6c038680f9
clarify the struct name for CURLOPT_HTTPPOST
2005-01-21 08:56:04 +00:00
Daniel Stenberg
4b1c0bd1e7
CURLOPT_FTPSSLAUTH was added in 7.12.2
2004-12-03 11:25:06 +00:00
Daniel Stenberg
0966ddafaa
As reported in Mandrake's bug tracker bug 12285
...
(http://qa.mandrakesoft.com/show_bug.cgi?id=12285 ), when connecting to an
IPv6 host with FTP, --disable-epsv (or --disable-eprt) effectively disables
the ability to transfer a file. Now, when connected to an FTP server with
IPv6, these FTP commands can't be disabled even if asked to with the
available libcurl options.
2004-11-29 21:25:07 +00:00
Daniel Stenberg
3e1caa6185
HTTP "auth done right". See lib/README.httpauth
2004-11-24 16:11:35 +00:00
Daniel Stenberg
1b02ad5e8a
format mistake fixed
2004-11-12 06:42:30 +00:00
Daniel Stenberg
c3323b1902
clarify and update according to commit made just now
2004-11-11 23:11:32 +00:00
Daniel Stenberg
6a06667cc0
Added CURLOPT_FTPSSLAUTH
2004-09-16 21:45:16 +00:00
Daniel Stenberg
75a6fdeb58
added more info on the nobody
2004-09-01 12:05:59 +00:00
Daniel Stenberg
5f3fa92062
minor edit of HTTPGET
2004-09-01 09:25:19 +00:00
Daniel Stenberg
66077ae48b
fix formatting flaw
2004-09-01 09:24:01 +00:00
Daniel Stenberg
dbacc81af7
added note about WRITEFUNCTION now being called with zero bytes if the file
...
to be transfered is empty
2004-08-23 14:41:54 +00:00
Daniel Stenberg
46313be2f5
added more header info for PUT and POST requests
2004-08-23 14:04:38 +00:00
Daniel Stenberg
3838745fdb
mention the reset function
2004-08-17 12:37:35 +00:00
Daniel Stenberg
8b6e87abee
summary edit: mention that some options take a curl_off_t
2004-08-16 10:49:57 +00:00
Daniel Stenberg
355b3d3057
updated the CURLOPT_POST description after input from Alan Pinstein
2004-08-10 13:22:08 +00:00
Daniel Stenberg
6f252f4704
reset CURLOPT_CUSTOMREQUEST with NULL
2004-06-27 21:19:54 +00:00
Daniel Stenberg
a20eb6df1b
reset CURLOPT_HTTPHEADER with NULL
2004-06-22 17:22:30 +00:00
Daniel Stenberg
1886893d66
Added blurb for the READFUNCTION, including the new CURL_READFUNC_ABORT
...
return code.
2004-06-21 14:09:23 +00:00
Daniel Stenberg
b3caf7bfa8
Setting CURLOPT_RANGE to NULL disables it.
...
Setting CURLOPT_RESUME_FROM to 0 prevents a resumed transfer.
2004-06-09 08:05:23 +00:00
Daniel Stenberg
aa0e32060e
CURLE_FAILED_INIT is returend when an unknown option is set
2004-06-03 11:19:35 +00:00
Daniel Stenberg
0078944486
CURLOPT_PUT is deprecated
2004-06-02 14:06:49 +00:00
Daniel Stenberg
23a43c6e0f
Seshubabu Pasam's format fixes and added notes about DER not working for
...
some (SSL-)options.
2004-05-17 07:12:32 +00:00
Daniel Stenberg
bb3d6e8552
tcp-nodelay patch by Joe Halpin
2004-03-25 13:37:18 +00:00
Daniel Stenberg
4b78b4124e
Tor Arntsen's major ispell patch
2004-03-24 21:40:45 +00:00
Daniel Stenberg
bc7122f6e2
CURLOPT_POSTFIELDSIZE_LARGE is added in 7.11.1
2004-03-12 09:14:45 +00:00
Daniel Stenberg
1ebda8fa0e
Added CURLOPT_POSTFIELDSIZE_LARGE to offer a large file version of the
...
CURLOPT_POSTFIELDSIZE option to allow really big HTTP POSTs.
2004-03-12 08:55:47 +00:00
Daniel Stenberg
526c61c657
global dns cache is not nice, we consider it obsolete starting now
2004-03-01 15:50:15 +00:00
Daniel Stenberg
25bcd45034
formatting update to produce better links with the new roffit version
2004-02-27 15:34:06 +00:00
Daniel Stenberg
f53d6e1c39
elaborate on the URL option
2004-02-27 14:07:22 +00:00
Daniel Stenberg
d0242da304
Added a few options that were still not documented. Now I believe all options
...
mentioned in the current curl/curl.h header file (that aren't marked as
obsolete) are present.
2004-02-27 09:02:06 +00:00
Daniel Stenberg
403cbbe0c4
mark the function name
2004-02-25 12:32:33 +00:00
Daniel Stenberg
9a7e3437ae
added CURLOPT_SHARE
2004-02-25 12:20:41 +00:00
Daniel Stenberg
afa5924487
very minor phrase edit
2004-02-19 10:21:54 +00:00
Daniel Stenberg
283f68f660
Dominick Meglio's update
2004-02-09 13:51:52 +00:00
Daniel Stenberg
5a58d51993
the *_LARGE options work fine on windows in 7.11.1
2004-01-23 12:52:04 +00:00
Daniel Stenberg
eaddf3d198
mark the option better
2004-01-22 10:17:09 +00:00
Daniel Stenberg
863c7c7282
no large files on windows just yet
2004-01-22 09:15:37 +00:00
Daniel Stenberg
d204c62c39
clarified where VERBOSE output goes
2004-01-21 07:46:17 +00:00
Daniel Stenberg
84990cb176
Peter Sylvester's CURLOPT_SSL_CTX_FUNCTION docs
...
I reworded some of the intial paragraphs to avoid 'NOTE2'
2004-01-15 10:38:08 +00:00
Daniel Stenberg
feeef39ebf
mention that the _LARGE options are added in 7.11.0, added a header to the
...
file with the standard curl blurb
2004-01-07 07:20:08 +00:00
Daniel Stenberg
b60e0fa97e
David J Meyer's large file support.
2004-01-05 22:29:29 +00:00
Daniel Stenberg
41c6f68d94
minor wording change
2004-01-05 14:56:46 +00:00
Daniel Stenberg
411d0cb715
minor format flaw
2004-01-05 14:46:56 +00:00
Daniel Stenberg
61685fee7e
Andrs Garca added CURLOPT_IPRESOLVE
2003-12-22 10:53:55 +00:00
Daniel Stenberg
bff59dac12
minor edit of the PRIVATE option
2003-12-04 13:01:30 +00:00
Daniel Stenberg
e42f806b3f
mention it was added in 7.10.9
2003-11-12 14:34:17 +00:00
Daniel Stenberg
ad77f760cf
Added CURLOPT_NETRC_FILE.
2003-11-11 14:30:43 +00:00
Daniel Stenberg
3dd40cca9a
Removed references to the no-longer existing PASSWDFUNCTION. That option
...
existed in 7.10.7 and earlier, but has since been cut out.
2003-11-07 13:26:45 +00:00
Daniel Stenberg
fe0b5801ec
mark options better
2003-11-07 09:15:28 +00:00
Daniel Stenberg
ecfb53f06d
Use .IP instead of .TP and .B for each item.
2003-11-04 12:55:53 +00:00
Daniel Stenberg
c020ee2eb6
spell!
2003-11-04 12:07:19 +00:00
Daniel Stenberg
ce5db9a86e
Dominick Meglio implemented CURLOPT_MAXFILESIZE and --max-filesize.
2003-10-17 13:11:00 +00:00
Daniel Stenberg
8f5b80c715
removed the passwd options that are no longer supported
2003-10-16 14:14:45 +00:00
Daniel Stenberg
b864e25011
CURLOPT_NOBODY means HEAD on HTTP servers
2003-10-04 14:01:41 +00:00
Daniel Stenberg
6e16985156
Added more docs for DEBUGFUNCTION as suggsted by Mohun Biswas
2003-09-12 18:35:38 +00:00
Daniel Stenberg
359c0eac0d
Early Ehlinger's CURLOPT_FTP_RESPONSE_TIMEOUT option documented by himself.
2003-09-05 11:02:11 +00:00
Daniel Stenberg
6fc55467f4
removed lots of "added in [version]" where [version] is resonably old
2003-08-15 06:35:41 +00:00
Daniel Stenberg
1679993e3b
CURLOPT_PROXYAUTH explained
2003-08-11 11:54:14 +00:00
Daniel Stenberg
3e122a765d
Christian Beutenmueller corrected the CURLOPT_FILE referer, as we nowadays
...
call it CURLOPT_WRITEDATA.
2003-08-11 11:29:33 +00:00
Daniel Stenberg
3c294691aa
remove the BUGS section
2003-08-11 07:23:49 +00:00
Daniel Stenberg
d987676ef0
added CURLOPT_FTP_CREATE_MISSING_DIRS
2003-08-08 11:04:35 +00:00
Daniel Stenberg
58b6b3df06
Dan Winship pointed out this flaw
2003-07-15 22:44:48 +00:00
Daniel Stenberg
3130b44535
added lots, mostly the new auth-related option(s)
2003-06-26 11:40:44 +00:00
Daniel Stenberg
4c80e103a0
clarify the CUSTOMREQUEST and HTTPHEADER options slightly
2003-06-10 13:06:38 +00:00
Daniel Stenberg
39ea557360
CURLOPT_HTTPAUTH docu
2003-06-10 12:58:40 +00:00
Daniel Stenberg
e56ae1426c
Daniel Kouril's patch that adds HTTP negotiation support to libcurl was
...
added.
2003-06-10 12:22:19 +00:00
Daniel Stenberg
1094e79749
documented CURLOPT_FTP_USE_EPRT
2003-05-14 09:03:51 +00:00
Daniel Stenberg
8f85933d7c
Dan F clarified the CURLOPT_ENCODING description after his changes to
...
allow "" to enable all support formats.
2003-05-12 12:47:35 +00:00
Daniel Stenberg
c06c44f286
Dan Fandrich's added gzip support documented.
2003-04-11 08:51:24 +00:00
Daniel Stenberg
0b0a88b78d
when saving a cookie jar fails, you don't get an error code or anything,
...
just a warning in the verbose output stream
2003-04-11 08:19:06 +00:00
Daniel Stenberg
25f611ca42
Guillaume Cottenceau's patch that adds CURLOPT_UNRESTRICTED_AUTH that
...
disables the host name check in the FOLLOWLOCATION code. With that option
set, libcurl will send user+password to all hosts.
2003-03-31 04:41:05 +00:00
Daniel Stenberg
9a075f53dc
clarify USERPWD somewhat more
2003-03-31 04:04:40 +00:00
Daniel Stenberg
bc1102922b
spell out that POSTFIELDS should be url-encoded in most cases
2003-02-28 07:53:31 +00:00
Daniel Stenberg
9faf57ee8d
how to disable FTP PORT
2003-02-17 23:23:11 +00:00
Daniel Stenberg
2ede47b8c8
Wai (Simon) Liu provided the HTTP200ALIASES paragraph.
2003-01-09 15:04:55 +00:00
Daniel Stenberg
76e107506f
Philippe Raoult's added note for HTTPHEADER
2003-01-09 14:58:54 +00:00
Daniel Stenberg
81f45ba92a
writefunction data is not zero terminated
2002-12-16 17:33:21 +00:00
Daniel Stenberg
b097c2cfb0
clarified
2002-12-03 12:40:12 +00:00
Daniel Stenberg
75145dd753
clarify the DEBUGFUNCTION data not being zero terminated
2002-12-03 10:37:20 +00:00
Daniel Stenberg
3f8ba3a986
clarified SSL_VERIFYPEER and SSL_VERIFYHOST a bit, thanks to Soren Spies
2002-12-02 06:47:16 +00:00
Daniel Stenberg
4a555de1b2
wrapped the line for PRIVATE nicer
2002-12-01 11:23:06 +00:00
Daniel Stenberg
8bca5e05b8
Kjetil Jacobsen's patch that introduces CURLOPT_PRIVATE and CURLINFO_PRIVATE
...
for storage and retrieval of private data in the curl handle.
2002-11-20 19:11:22 +00:00
Daniel Stenberg
75194373e0
language
2002-11-14 09:55:00 +00:00
Daniel Stenberg
f3875048f6
clarified that strings need to be kept around until the handle is closed or
...
until the pointers are set to another value
2002-11-14 09:54:10 +00:00
Daniel Stenberg
86a86d7afd
Andrs Garca's corrections
2002-10-15 08:39:30 +00:00
Daniel Stenberg
342fce97af
Re-ordered all the options to be more logically structured. Hopefully this
...
will make this page more readable and easy to find things in!
2002-09-18 15:26:42 +00:00
Daniel Stenberg
22cf05519a
clarified what CURLOPT_MAXCONNECTS actually do
2002-09-13 12:37:14 +00:00
Daniel Stenberg
2a0bc64226
Markus F.X.J. Oberhumer's added notes about NOSIGNAL in the TIMEOUT
...
descriptions, slightly edited by me.
2002-08-22 19:45:22 +00:00
Daniel Stenberg
6d7785a35b
NOSIGNAL, BUFFERSIZE and clarification for the PROGRESSFUNCTION
2002-08-21 19:04:08 +00:00
Daniel Stenberg
c8ee1fa62e
modified again to look better HTML converted
2002-08-15 08:06:36 +00:00
Daniel Stenberg
5c1a6ed719
Leonce Limousin pointed out flaws
2002-08-15 06:13:54 +00:00
Daniel Stenberg
be24652d4d
Adding more blurb about activating the cookies on COOKIEFILE and COOKIEJAR
2002-08-07 08:23:40 +00:00
Daniel Stenberg
33306b2749
jonatan's fixes
2002-08-05 09:38:31 +00:00
Daniel Stenberg
f79f5cbf82
Setting PASSWDFUNCTION to NULL will set back the internal function as password
...
function.
2002-07-29 22:42:11 +00:00
Daniel Stenberg
15bc7e19f9
updated header
2002-06-03 13:04:35 +00:00
Daniel Stenberg
59c11b82d5
Cris Bailiff's CAPATH support added
2002-05-28 09:21:29 +00:00
Daniel Stenberg
51fcee6f81
James Cone added CURLOPT_NETRC / --netrc / --netrc-optional descriptions
2002-05-21 22:20:16 +00:00
Daniel Stenberg
20d9c1b30d
Patrick Smith's contributed docs improvements for when NLST is used by
...
curl...
2002-05-07 23:36:53 +00:00
Daniel Stenberg
8539e76cb9
CURLOPT_FILE and CURLOPT_INFILE have better aliases now:
...
CURLOPT_WRITEDATA and CURLOPT_READDATA
2002-05-06 13:43:35 +00:00
Daniel Stenberg
d9a1a59f22
CURL_MAX_WRITE_SIZE is a new exported define that informs about the biggest
...
sized buffer that may be passed to a write callback
2002-05-03 14:50:29 +00:00
Daniel Stenberg
bd9650bc81
how to set more than one cookie
2002-04-30 07:37:02 +00:00
Daniel Stenberg
47819ea86e
clarified a bit with the timecondition stuff
2002-04-24 10:16:46 +00:00
Daniel Stenberg
a00918116d
7.9.6-pre5
2002-04-12 11:39:27 +00:00
Daniel Stenberg
38ed8938d8
Added DNS cache control options
2002-04-02 13:29:05 +00:00
Daniel Stenberg
61a84abe2a
WRITEFUNCTION correction
2002-03-18 08:53:21 +00:00
Daniel Stenberg
01f04b9a41
ripped out from ../ and put in its own directory now
2002-03-04 10:09:48 +00:00