curl/docs/FEATURES

127 lines
3.5 KiB
Plaintext
Raw Normal View History

2000-05-22 13:35:35 -04:00
_ _ ____ _
___| | | | _ \| |
/ __| | | | |_) | |
| (__| |_| | _ <| |___
\___|\___/|_| \_\_____|
FEATURES
2004-08-12 10:08:46 -04:00
curl tool
- config file support
- multiple URLs in a single command line
- range "globbing" support: [0-13], {one,two,three}
- multiple file upload on a single command line
- custom maximum transfer rate
- redirectable stderr
libcurl supports
- full URL syntax with no length limit
2000-05-22 13:35:35 -04:00
- custom maximum download time
- custom least download speed acceptable
- custom output result after completion
- guesses protocol from host name unless specified
- uses .netrc
- progress bar/time specs while downloading
2000-12-11 10:35:57 -05:00
- "standard" proxy environment variables support
2003-06-26 07:36:32 -04:00
- compiles on win32 (reported builds on 40+ operating systems)
- selectable network interface for outgoing traffic
2004-08-12 10:08:46 -04:00
- IPv6 support on unix and Windows
2001-03-12 04:44:08 -05:00
- persistant connections
2003-05-28 06:24:20 -04:00
- socks5 support
2003-06-26 07:36:32 -04:00
- supports user name + password in proxy environment variables
- operations through proxy "tunnel" (using CONNECT)
2004-08-12 10:08:46 -04:00
- supports large files (>2GB and >4GB) both upload/download
- replacable memory functions (malloc, free, realloc, etc)
- asynchronous name resolving (*6)
2000-05-22 13:35:35 -04:00
HTTP
2003-06-26 07:36:32 -04:00
- HTTP/1.1 compliant (optionally uses 1.0)
2000-05-22 13:35:35 -04:00
- GET
- PUT
- HEAD
- POST
2003-06-26 07:36:32 -04:00
- multipart formpost (RFC1867-style)
2003-09-19 08:55:35 -04:00
- authentication: Basic, Digest, NTLM(*1), GSS-Negotiate/Negotiate(*3) and
2004-08-12 10:08:46 -04:00
SPNEGO (*4) to server and proxy
- resume (both GET and PUT)
2000-05-22 13:35:35 -04:00
- follow redirects
2000-12-11 10:35:57 -05:00
- maximum amount of redirects to follow
2000-05-22 13:35:35 -04:00
- custom HTTP request
2000-12-11 10:35:57 -05:00
- cookie get/send fully parsed
2003-05-28 06:24:20 -04:00
- reads/writes the netscape cookie file format
2003-06-26 07:36:32 -04:00
- custom headers (replace/remove internally generated headers)
2000-05-22 13:35:35 -04:00
- custom user-agent string
- custom referer string
- range
- proxy authentication
- time conditions
- via http-proxy
2000-12-11 10:35:57 -05:00
- retrieve file modification date
2003-05-28 06:24:20 -04:00
- Content-Encoding support for deflate and gzip
2003-06-26 07:36:32 -04:00
- "Transfer-Encoding: chunked" support for "uploads"
2000-05-22 13:35:35 -04:00
HTTPS (*1)
- (all the HTTP features)
2005-05-18 06:14:25 -04:00
- using client certificates
2000-12-11 10:35:57 -05:00
- verify server certificate
2000-05-22 13:35:35 -04:00
- via http-proxy
2003-05-28 06:24:20 -04:00
- select desired encryption
2005-05-18 06:14:25 -04:00
- force usage of a specific SSL version (SSLv2(*7), SSLv3 or TLSv1)
2000-05-22 13:35:35 -04:00
FTP
- download
- authentication
2003-09-19 08:55:35 -04:00
- kerberos4 (*5)
2001-12-03 05:07:49 -05:00
- active/passive using PORT, EPRT, PASV or EPSV
2000-05-22 13:35:35 -04:00
- single file size information (compare to HTTP HEAD)
- 'type=' URL support
- dir listing
- dir listing names-only
- upload
- upload append
- upload via http-proxy as HTTP PUT
- download resume
- upload resume
2000-07-31 18:42:34 -04:00
- custom ftp commands (before and/or after the transfer)
2000-05-22 13:35:35 -04:00
- simple "range" support
- via http-proxy
2000-09-15 09:20:34 -04:00
- all operations can be tunneled through a http-proxy
2000-12-11 10:35:57 -05:00
- customizable to retrieve file modification date
2004-08-12 10:08:46 -04:00
- third party transfers
- no dir depth limit
2000-05-22 13:35:35 -04:00
2004-01-07 09:50:11 -05:00
FTPS (*1)
- explicit ftps:// support that use SSL on both connections
- implicit "AUTH TSL" and "AUTH SSL" usage to "upgrade" plain ftp://
connection to use SSL for both or one of the connections
2005-11-17 09:28:58 -05:00
TFTP
- download / upload
2000-05-22 13:35:35 -04:00
TELNET
- connection negotiation
2001-03-12 04:44:08 -05:00
- custom telnet options
2000-05-22 13:35:35 -04:00
- stdin/stdout I/O
LDAP (*2)
- full LDAP URL support
DICT
- extended DICT URL support
FILE
- URL support
2004-08-12 10:08:46 -04:00
- "uploads"
- resume
2000-05-22 13:35:35 -04:00
2003-09-19 08:55:35 -04:00
FOOTNOTES
=========
2005-05-18 06:14:25 -04:00
*1 = requires OpenSSL or GnuTLS
2003-06-26 07:36:32 -04:00
*2 = requires OpenLDAP
*3 = requires a GSSAPI-compliant library, such as Heimdal or similar.
2003-09-19 08:55:35 -04:00
*4 = requires FBopenssl
*5 = requires a krb4 library, such as the MIT one or similar.
2004-08-12 10:08:46 -04:00
*6 = requires c-ares
2005-05-18 06:14:25 -04:00
*7 = requires OpenSSL specificly, as GnuTLS only supports SSLv3 and TLSv1