Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-23 | --libcurl does not support -F | Daniel Stenberg | |
2007-07-20 | Document pwd as an sftp quote command for curl(1), and show it as | Dan Fandrich | |
lower case for consistency since sftp commands are case insensitive. | |||
2007-07-01 | Thomas J. Moore provided a patch that introduces Kerberos5 support in | Daniel Stenberg | |
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-06-13 | Update documentation to reflect SFTP's ability to create directories on | James Housley | |
upload. Some text provieded by Tom Regner | |||
2007-05-15 | Added support for quote commands before a transfer using SFTP and test | Dan Fandrich | |
case 614. Allow SFTP quote commands chmod, chown, chgrp to set a value of 0. | |||
2007-05-14 | Added SFTP directory listing test case 613. | Dan Fandrich | |
2007-05-09 | Added the list of SFTP post-quote commands, and fixed a few typos. | Dan Fandrich | |
2007-04-22 | - Song Ma's warning if -r/--range is given with a "bad" range, also noted in | Daniel Stenberg | |
the man page now. | |||
2007-04-22 | clarify a bit on the follow-redirect logic and when curl switches from POST | Daniel Stenberg | |
to GET on redirect | |||
2007-03-23 | Added --pubkey option to curl and made --key also work for SCP/SFTP, | Dan Fandrich | |
plus made --pass work on an SSH private key as well. | |||
2007-02-28 | clarify that -K files are expected to have one option per line | Daniel Stenberg | |
2007-02-23 | - Added warning outputs if the command line uses more than one of the options | Daniel Stenberg | |
-v, --trace and --trace-ascii, since it could really confuse the user. Clarified this fact in the man page. | |||
2007-02-20 | New FTP CCC functionality - adds passive and active mode to accomodate for ↵ | Linus Nielsen Feltzing | |
different server behaviour | |||
2007-02-12 | Rob Crittenden added support for NSS (Network Security Service) for the | Daniel Stenberg | |
SSL/TLS layer. http://www.mozilla.org/projects/security/pki/nss/ | |||
2007-02-12 | - Shmulik Regev fixed so that the final CRLF of HTTP response headers are sent | Daniel Stenberg | |
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-01-25 | - Added the --libcurl [file] option to curl. Append this option to any | Daniel Stenberg | |
ordinary curl command line, and you will get a libcurl-using source code written to the file that does the equivalent operation of what your command line operation does! | |||
2007-01-05 | - Linus Nielsen Feltzing introduced the --ftp-ssl-ccc command line option to | Daniel Stenberg | |
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. | |||
2006-12-14 | minor syntax mistake | Daniel Stenberg | |
2006-12-06 | 7.16.1 knows SFTP too | Daniel Stenberg | |
2006-12-06 | clarify --limit-rate somewhat: it might send away/receive chunks of date in | Daniel Stenberg | |
temporarily higher speeds than requested, but the given limiting is considered "over time" and is an average | |||
2006-11-03 | SCP support added | Daniel Stenberg | |
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 | |