adjusted to recent changes

This commit is contained in:
Daniel Stenberg
2003-06-26 11:36:32 +00:00
parent 3a552b1e63
commit 26f6365e93

View File

@@ -17,28 +17,30 @@ Misc
- progress bar/time specs while downloading - progress bar/time specs while downloading
- "standard" proxy environment variables support - "standard" proxy environment variables support
- config file support - config file support
- compiles on win32 (reported built on 40+ operating systems) - compiles on win32 (reported builds on 40+ operating systems)
- redirectable stderr - redirectable stderr
- use selected network interface for outgoing traffic - selectable network interface for outgoing traffic
- IPv6 support - IPv6 support
- persistant connections - persistant connections
- socks5 support - socks5 support
- supports user name + password in proxy environment variables
- operations through proxy "tunnel" (using CONNECT)
HTTP HTTP
- HTTP/1.1 compliant - HTTP/1.1 compliant (optionally uses 1.0)
- GET - GET
- PUT - PUT
- HEAD - HEAD
- POST - POST
- multipart POST - multipart formpost (RFC1867-style)
- authentication (Basic and Digest) - authentication (Basic, Digest, NTLM(*1), GSS-Negotiate(*3))
- resume (both GET and PUT) - resume (both GET and PUT)
- follow redirects - follow redirects
- maximum amount of redirects to follow - maximum amount of redirects to follow
- custom HTTP request - custom HTTP request
- cookie get/send fully parsed - cookie get/send fully parsed
- reads/writes the netscape cookie file format - reads/writes the netscape cookie file format
- custom headers (that can replace/remove internally generated headers) - custom headers (replace/remove internally generated headers)
- custom user-agent string - custom user-agent string
- custom referer string - custom referer string
- range - range
@@ -47,7 +49,7 @@ HTTP
- via http-proxy - via http-proxy
- retrieve file modification date - retrieve file modification date
- Content-Encoding support for deflate and gzip - Content-Encoding support for deflate and gzip
- Transfer-Encoding: chunked support for "uploads" - "Transfer-Encoding: chunked" support for "uploads"
HTTPS (*1) HTTPS (*1)
- (all the HTTP features) - (all the HTTP features)
@@ -55,6 +57,7 @@ HTTPS (*1)
- verify server certificate - verify server certificate
- via http-proxy - via http-proxy
- select desired encryption - select desired encryption
- force usage of a specific SSL version (SSLv2, SSLv3 or TLSv1)
FTP FTP
- download - download
@@ -96,3 +99,4 @@ FILE
*1 = requires OpenSSL *1 = requires OpenSSL
*2 = requires OpenLDAP *2 = requires OpenLDAP
*3 = requires a GSSAPI-compliant library, such as Heimdal or similar.