Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-25 | Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the | Daniel Stenberg | |
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-12 | point out the sslcert web page for -k/--insecure | Daniel Stenberg | |
2006-10-09 | changed the wording about removal of internal headers with -H | Daniel Stenberg | |
2006-09-30 | Support for FTP third party transfers is now dropped | Daniel Stenberg | |
2006-09-24 | eeep, tab completion error | Daniel Stenberg | |
2006-09-24 | --ftp-ssl-control requires SSL/TLS, it does not "try" it | Daniel Stenberg | |
2006-09-23 | minor edits | Daniel Stenberg | |
2006-09-23 | Mike Protts added --ftp-ssl-control to make curl use FTP-SSL, but only | Daniel Stenberg | |
encrypt the control connection and use the data connection "plain". | |||
2006-09-21 | -z works on FTP, too | Dan Fandrich | |
2006-09-20 | lots of "HTTPS" features are really "SSL" ones as they are also valid for | Daniel Stenberg | |
FTPS | |||
2006-09-20 | PEM is default type for key and cert | Daniel Stenberg | |
2006-09-11 | - Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a | Daniel Stenberg | |
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-07-26 | David McCreedy added --ftp-ssl-reqd which makes curl *require* SSL for both | Daniel Stenberg | |
control and data connection, as the existing --ftp-ssl option only requests it. | |||
2006-07-25 | Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curl | Daniel Stenberg | |
tool option named --ftp-alternative-to-user. It provides a mean to send a particular command if the normal USER/PASS approach fails. | |||
2006-06-16 | when mentioning the default config file, point back to the actual description | Daniel Stenberg | |
of how to write such a file | |||
2006-05-25 | minor RFC updates, Dan Fandrich brought my attention to them | Daniel Stenberg | |
2006-04-26 | updated with more error codes | Daniel Stenberg | |
2006-03-21 | David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry path | Daniel Stenberg | |
2006-03-15 | slightly edited explanation for -f/--fail by the help of Kjell Ericson | Daniel Stenberg | |
2006-03-14 | --ftp-method and CURLOPT_FTP_FILEMETHOD are now documented and usable | Daniel Stenberg | |
2006-03-02 | added large chunk of blurb about the progress meter | Daniel Stenberg | |
2006-02-21 | Peter Su added support for SOCKS4 proxies. Enable this by setting the proxy | Daniel Stenberg | |
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-01-30 | Added CURLOPT_LOCALPORT and CURLOPT_LOCALPORTRANGE to libcurl. Set with the | Daniel Stenberg | |
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-20 | Fixed some statements about handling multiple occurrences of options. | Dan Fandrich | |
Tried to make some of the wording a bit more consistent. | |||
2006-01-19 | clarify what "-P -" does | Daniel Stenberg | |
2006-01-16 | David Shaw finally removed all traces of Gopher and we are now officially | Daniel Stenberg | |
not supporting it. It hasn't been functioning for years anyway, so this is just finally stating what already was true. And a cleanup at the same time. | |||
2006-01-16 | improved the description of the -L/--location option | Daniel Stenberg | |
2005-12-15 | minor edit | Daniel Stenberg | |
2005-11-24 | mention the colon-only thing for -u and SSPI+NTLM | Daniel Stenberg | |
2005-11-14 | extended the description for exit code 9 | Daniel Stenberg | |
2005-11-10 | Introducing range stepping to the curl globbing support. Now you can specify | Daniel Stenberg | |
step counter by adding :[num] within the brackets when specifying a range. | |||
2005-11-07 | mention the need for a "fake" -u when --negotiate is used | Daniel Stenberg | |
2005-10-27 | Nis Jorgensen filed bug report #1338648 | Daniel Stenberg | |
(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 | Jaz Fresh pointed out that if you used "-r [number]" as was wrongly described | Daniel Stenberg | |
in the man page, curl would send an invalid HTTP Range: header. The correct way would be to use "-r [number]-" or even "-r -[number]". Starting now, curl will warn if this is discovered, and automatically append a dash to the range before passing it to libcurl. | |||
2005-09-08 | --max-time should work just as good on win32 these days | Daniel Stenberg | |
2005-09-08 | mention the protocol-guessing when no protocol part is given in the URL | Daniel Stenberg | |
added TFTP to the list of supported protocols | |||
2005-09-04 | don't start lines with apostrophes! | Daniel Stenberg | |
2005-09-04 | 7.14.2 actually | Daniel Stenberg | |
2005-09-04 | Added FTP_SKIP_PASV_IP and --ftp-skip-pasv-ip | Daniel Stenberg | |
2005-08-25 | ok, the right term (using RFC2616 lingo) for the -X keyword is method and not | Daniel Stenberg | |
request | |||
2005-08-24 | Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible | Daniel Stenberg | |
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-12 | -H needs no CRLF or similar added | Daniel Stenberg | |
2005-06-23 | added docs about the new proxy string support | Daniel Stenberg | |
2005-05-02 | Added --trace-time that when used adds a time stamp to each trace line that | Daniel Stenberg | |
--trace, --trace-ascii and --verbose output. I also made the '>' display separate each line on the linefeed so that HTTP requests etc look nicer in the -v output. | |||
2005-04-28 | Updated with (new and old) default config file search path explanation. | Daniel Stenberg | |
2005-04-16 | clarify that > in the verbose output can contain newlines | Daniel Stenberg | |
2005-04-07 | add SSPI | Daniel Stenberg | |
2005-04-06 | Removed extraneous comma | Dan Fandrich | |
2005-04-04 | spell fixes, based on the Debian bug report #302820 submitted by "A Costa" | Daniel Stenberg | |
2005-03-30 | format mistake in --form-string, pointed out by Owen Watson | Daniel Stenberg | |