Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-09 | proxy protocol docs: rephrased and updated | Daniel Stenberg | |
2011-08-08 | s/7.21.8/7.22.0 | Daniel Stenberg | |
2011-08-08 | VERSIONS: clarify our versioning concept | Daniel Stenberg | |
Drop the pre-release part from this text as we don't use that in practise since many years. Update the phrasing to reflect our more strict interpretation: http://curl.haxx.se/mail/lib-2011-08/0064.html | |||
2011-08-05 | BSD-style lwIP TCP/IP stack support - docs/INSTALL blurb | Yang Tse | |
2011-08-03 | curl_gssapi: refine the handling of CURLOPT_GSSAPI_DELEGATION | Kamil Dudka | |
Suggested by Richard Silverman. | |||
2011-08-03 | Add new CURLOPT_GSSAPI_DELEGATION option. | Adam Tkac | |
Curl_gss_init_sec_context got new parameter - SessionHandle. Signed-off-by: Adam Tkac <atkac@redhat.com> | |||
2011-07-19 | symbols-in-versions: add NTLM_SSO symbols | Daniel Stenberg | |
2011-06-30 | docs: FTP quotes support '*' prefix to ignore errors | Daniel Stenberg | |
By default libcurl stops processing quote commands on failures. | |||
2011-06-29 | THANKS: new contributors from 7.21.7 | Daniel Stenberg | |
2011-06-28 | examples: cleanup curl includes | Daniel Stenberg | |
Only <curl/curl.h> is needed typically and curl/types.h has been removed | |||
2011-06-23 | curl_formfree: clarify which pointer to free | Daniel Stenberg | |
2011-06-21 | FAQ: more blurb on persistent connections | Daniel Stenberg | |
2011-06-20 | INSTALL: mention the GIT-INFO file | Daniel Stenberg | |
2011-06-13 | curl_formget.3: CURLFORM_STREAM has its drawbacks | Daniel Stenberg | |
Due to a design flaw, the CURLFORM_STREAM option doesn't really work with curl_formget until after curl_easy_perform (or similar). | |||
2011-06-13 | FAQ: binding clarification | Daniel Stenberg | |
We don't author the bindings, they are created outside the main project. | |||
2011-06-10 | CURLOPT_WRITEHEADER: clarify the docs | Daniel Stenberg | |
2011-06-02 | curl hasn't sent a Pragma: header by default for a while | Dan Fandrich | |
2011-06-01 | CURLOPT_WILDCARDMATCH: minor style edit | Daniel Stenberg | |
Due to some flaw in roffit I removed some style changes to make the web page look better. | |||
2011-05-27 | curl_easy_setopt.3: NOPROGRESS also affects the callback | Daniel Stenberg | |
2011-05-25 | setopt.3: remove leftover style change | Daniel Stenberg | |
2011-05-25 | setopt.3: CURLOPT_WRITEFUNCTION had wrong function proto | Daniel Stenberg | |
2011-05-19 | typo: close is in man page section 3 | Daniel Stenberg | |
2011-05-18 | curl_easy_setopt.3: document CLOSESOCKET* options | Daniel Stenberg | |
2011-05-18 | symbols-in-versions: add CLOSESOCKET* | Daniel Stenberg | |
2011-05-05 | curl.1: --socks* options no longer needed | Daniel Stenberg | |
As we now can specify all the socks proxy types with the regular --proxy option using protocol prefix. | |||
2011-05-05 | socks proxy: allow socks5h:// prefix too | Daniel Stenberg | |
Using 'socks5h' as proxy protocol will make it a CURLPROXY_SOCKS5_HOSTNAME proxy which is SOCKS5 and asking the proxy to resolve host names. I found no "standard" protocol name for this. | |||
2011-05-05 | curl.1: minor edit of --ftp-ssl* | Daniel Stenberg | |
2011-05-05 | curl.1: use GNU style and sort options | Jari Aalto | |
Follow style of GNU layout (cp, mv ...) where options are separated with comma: -o, --option Order item alphabetically (by length also): -o, -O, --option Follow style of GNU layout by moving help related options to the end: --help, -M, --version | |||
2011-05-03 | curl_easy_getinfo.3: clarify some timing info | Daniel Stenberg | |
2011-05-02 | curl_easy_setopt.3: clarify the SSH KEYFILE options usage | Daniel Stenberg | |
The internal defaults are important info | |||
2011-05-02 | docs: mention the protocol:// support in proxy strings | Daniel Stenberg | |
2011-05-02 | --data-ascii: add mention | Daniel Stenberg | |
As it is a separate option it should have a .IP title | |||
2011-05-02 | url encode docs: mention '-', '.', '_' and '~' | Daniel Stenberg | |
Clarify that the '-', '.', '_' or '~' letters are also not escaped since they shouldn't according to RFC3986 section 2.3. This is how this function has behaved since sep 2010, commit 5df13c31735fa0. | |||
2011-04-30 | curl_formfree.3: mention argument may be NULL | Daniel Stenberg | |
As the code already checks for it we can just as well make it official! | |||
2011-04-28 | anyauthput.c: stdint.h must not be included unconditionally | Daniel Stenberg | |
As it is already included by curlbuild.h if it exists on the platform it was included here superfluously anyway. Reported by: Dagobert Michelsen Bug: http://curl.haxx.se/bug/view.cgi?id=3294509 | |||
2011-04-28 | CMake: improve library search, implement install. | Zmey Petroff | |
Improved library search by check_function_exists_concat() macro: it does not revert the list of libraries any more. Improved OpenSSL library search: first find zlib, then search for openssl libraries that may depend on zlib. For Unix: openssl libraries can now be detected in nonstandard locations. Supply CMAKE_LIBRARY_PATH to CMake on command line. Added installation capability (very basic one yet). | |||
2011-04-22 | THANKS: contributors from 7.21.6 | Daniel Stenberg | |
2011-04-20 | curl_easy_setopt.3: CURLOPT_PROXYTYPE clarification | Daniel Stenberg | |
When set to a HTTP 1.0 proxy, that only affects the CONNECT request and not the regular HTTP request. | |||
2011-04-19 | Updated default (recommended) dependency versions. | Guenter Knauf | |
2011-04-18 | transfer-encoding: document the options | Daniel Stenberg | |
The new libcurl and command line options are now described. | |||
2011-04-18 | transfer-encoding: added new option and cmdline | Daniel Stenberg | |
Added CURLOPT_TRANSFER_ENCODING as the option to set to request Transfer Encoding in HTTP requests (if built zlib enabled). I also renamed CURLOPT_ENCODING to CURLOPT_ACCEPT_ENCODING (while keeping the old name around) to reduce the confusion when we have to encoding options for HTTP. --tr-encoding is now the new command line option for curl to request this, and thus I updated the test cases accordingly. | |||
2011-04-17 | THANKS: 11 new contributors from 7.21.5 | Daniel Stenberg | |
2011-04-17 | INTERNALS: clean up | Daniel Stenberg | |
Clarified the release procedure | |||
2011-04-14 | curl.1: error code update | Daniel Stenberg | |
Error 4 has got a meaning Error 48 has got a slightly different meaning now | |||
2011-04-14 | FAQ: c-ares does ipv6 pretty well now | Daniel Stenberg | |
2011-04-12 | Updated minimum binary sizes | Dan Fandrich | |
2011-04-11 | curl.1: spell out the -O target directory | Daniel Stenberg | |
When using -O the file will be saved in the current directory, and this is now spelled out clearly. | |||
2011-04-09 | curl_easy_setopt.3: CURLOPT_RESOLVE typo version | Daniel Stenberg | |
Reported by: Hongli Lai | |||
2011-04-07 | Added mention of FTP proxies | Dan Fandrich | |
2011-04-07 | examples/makefile.dj: update email | Gisle Vanem | |