Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-09-10 | Checked in some grammatical and minor other fixes in the documentation and | Dan Fandrich | |
examples that I found in the FreeBSD ports system. | |||
2008-09-09 | Mike Revi discovered some swapped speed switches documented in the curl man | Dan Fandrich | |
page. | |||
2008-09-09 | Hammer home the fact that "multi interface" != "multi-threaded" | Dan Fandrich | |
2008-09-07 | SOCKS5_RESOLVE_LOCAL was just never added as an option! | Daniel Stenberg | |
2008-09-06 | remove unnecessary typecasting of malloc() | Yang Tse | |
2008-09-06 | remove unnecessary typecasting of realloc() | Yang Tse | |
2008-09-05 | - Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames | Daniel Stenberg | |
CURLOPT_POST301 (but adds a define for backwards compatibility for you who don't define CURL_NO_OLDIES). This option allows you to now also change the libcurl behavior for a HTTP response 302 after a POST to not use GET in the subsequent request (when CURLOPT_FOLLOWLOCATION is enabled). I edited the patch somewhat before commit. The curl tool got a matching --post302 option. Test case 1076 was added to verify this. | |||
2008-09-05 | - Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By | Daniel Stenberg | |
enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS or FTPS), libcurl will gather lots of server certificate info and that info can then get extracted by a client after the request has completed with curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing helped me test and smoothen out this feature. Unfortunately, this feature currently only works with libcurl built to use OpenSSL. This feature was sponsored by networking4all.com - thanks! | |||
2008-09-01 | 18 new contributors from the 7.19.0 release notes | Daniel Stenberg | |
2008-08-31 | MSVC adjustment | Yang Tse | |
2008-08-30 | vc6curl.dsw and MSVC 6 IDE build directions | Yang Tse | |
2008-08-28 | Fixed a couple of typos | Dan Fandrich | |
2008-08-27 | s/you you/you/ thanks to hexo6 at wp.pl | Daniel Stenberg | |
2008-08-24 | 58. It seems sensible to be able to use CURLOPT_NOBODY and | Daniel Stenberg | |
CURLOPT_FAILONERROR with FTP to detect if a file exists or not, but it is not working: http://curl.haxx.se/mail/lib-2008-07/0295.html | |||
2008-08-21 | 57. On VMS-Alpha: When using an http-file-upload the file is not sent to the | Daniel Stenberg | |
Server with the correct content-length. Sending a file with 511 or less bytes, content-length 512 is used. Sending a file with 513 - 1023 bytes, content-length 1024 is used. Files with a length of a multiple of 512 Bytes show the correct content-length. Only these files work for upload. http://curl.haxx.se/bug/view.cgi?id=2057858 | |||
2008-08-20 | the .netrc curl checks for is called _netrc on windows bug report #2061610 | Daniel Stenberg | |
2008-08-20 | Added an edited version of Vincent Le Normand's documentation of SFTP quote | Dan Fandrich | |
commands to the man pages. | |||
2008-08-17 | Pick-up programs from Makefile.inc. | Gisle Vanem | |
2008-08-14 | Fixed unused variable warning | Dan Fandrich | |
2008-08-13 | httpcustomheader.c is a new tiny example showing a HTTP request with a custom | Daniel Stenberg | |
header replacing an internal one | |||
2008-08-07 | Initial support of curlbuild.h and curlrules.h which allows | Yang Tse | |
to have a curl_off_t data type no longer gated to off_t. | |||
2008-08-06 | - mention curl_multi_socket_action() rather than the deprecated | Daniel Stenberg | |
curl_multi_socket() - don't claim that it has an argument named 'easy' because it doesn't! | |||
2008-08-01 | Added support for --append on SFTP uploads. Unfortunately, OpenSSH doesn't | Dan Fandrich | |
support this so it goes untested. | |||
2008-08-01 | User names embedded in proxy URLs without a password were parsed | Dan Fandrich | |
incorrectly--the host name is treated as part of the user name and the port number becomes the password. This can be observed in test 279 (was KNOWN_ISSUE #54). | |||
2008-07-31 | Fixed parsing of an IPv6 proxy address to support a scope identifier, | Dan Fandrich | |
as well as IPv4 addresses in IPv6 format. Also, better handle the case of a malformatted IPv6 address (avoid empty and NULL strings). | |||
2008-07-30 | Added IPv6 section | Dan Fandrich | |
2008-07-30 | - Phil Blundell added the CURLOPT_SCOPE option, as well as adjusted the URL | Daniel Stenberg | |
parser to allow numerical IPv6-addresses to be specified with the scope given, as per RFC4007 - with a percent letter that itself needs to be URL escaped. For example, for an address of fe80::1234%1 the HTTP URL is: "http://[fe80::1234%251]/" | |||
2008-07-30 | - Made the curl tool's -w option support the %{ssl_verify_result} variable | Daniel Stenberg | |
2008-07-29 | 56. When libcurl sends CURLOPT_POSTQUOTE commands when connected to a SFTP | Daniel Stenberg | |
server using the multi interface, the commands are not being sent correctly and instead the connection is "cancelled" (the operation is considered done) prematurely. There is a half-baked (busy-looping) patch provided in the bug report but it cannot be accepted as-is. See http://curl.haxx.se/bug/view.cgi?id=2006544 | |||
2008-07-29 | Document that PKG_CONFIG_PATH is the preferred way to configure with | Dan Fandrich | |
OpenSSL. | |||
2008-07-23 | Eliminated references to TRUE and FALSE since those identifiers aren't | Dan Fandrich | |
defined by the libcurl API. Also changed curl_easy_setopt examples to pass longs where appropriate. | |||
2008-07-23 | - I went over the curl_easy_setopt man page and replaced most references to | Daniel Stenberg | |
non-zero with the fixed value of 1. We should strive at making options support '1' for enabling them mentioned explicitly, as that then will allow us for to extend them in the future without breaking older programs. | |||
2008-07-23 | Simplified Minix compile instructions and added some special cases. | Dan Fandrich | |
2008-07-15 | add comment for include paths | Yang Tse | |
2008-07-14 | HTTP_ONLY definition check in lib/setup.h is now done once that configuration | Yang Tse | |
file has been included. In this way if symbol is defined in the config file it will no longer be ignored. | |||
2008-07-11 | document the exit codes 82 and 83 that are new in 7.19.0 | Daniel Stenberg | |
2008-07-10 | (Added in the section for CURLOPT_DNS_CACHE_TIMEOUT, pointed out on the | Daniel Stenberg | |
curl-library list on July 9th 2008 by Mathew Hounsell) NOTE: the name resolve functions of various libc implementations don't re-read name server information unless explicitly told so (by for example calling Ires_init(3). This may cause libcurl to keep using the older server even if DHCP has updated the server info, and this may look like a DNS cache issue to the casual libcurl-app user. | |||
2008-07-10 | updated to match current reality | Daniel Stenberg | |
2008-07-10 | s/muse/must | Daniel Stenberg | |
2008-07-10 | document --remote-name-all | Daniel Stenberg | |
2008-07-08 | Fixed test 554 to pass the torture test. | Dan Fandrich | |
2008-07-08 | Added libidn libs as needed. Added compilation of sendrecv.c | Gisle Vanem | |
and cookie_interface.c. | |||
2008-07-03 | Introcuding a new timestamp for curl_easy_getinfo(): | Daniel Stenberg | |
CURLINFO_APPCONNECT_TIME. This is set with the "application layer" handshake/connection is completed (typically SSL, TLS or SSH). By using this you can figure out the application layer's own connect time. You can extract the time stamp using curl's -w option and the new variable named 'time_appconnect'. This feature was sponsored by Lenny Rachitsky at NeuStar. | |||
2008-07-01 | - Rolland Dudemaine provided fixes to get libcurl to build for the INTEGRITY | Daniel Stenberg | |
operating system. | |||
2008-06-30 | minor language fix | Daniel Stenberg | |
2008-06-26 | let's try to maintain compatibility with NSS 3.11.x | Daniel Stenberg | |
2008-06-12 | added the versions of a range of build tools that we want to remain to work | Daniel Stenberg | |
2008-06-12 | My first attempt at documenting what we try to support and make curl run with | Daniel Stenberg | |
in regard to C standard, third party libraries and operating systems etc. | |||
2008-06-08 | 7.19.0 is next | Daniel Stenberg | |
2008-06-08 | the next release is now called 7.19.0 | Daniel Stenberg | |