Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-16 | Jean Jacques Drouin pointed out that you could only have a user name or | Daniel Stenberg | |
password of 127 bytes or less embedded in a URL, where actually the code uses a 255 byte buffer for it! Modified now to use the full buffer size. | |||
2005-12-06 | start working on 7.15.2 | Daniel Stenberg | |
2005-12-06 | 7.15.1 with the now to be announced security flaw fixed | Daniel Stenberg | |
2005-12-01 | Jamie Newton pointed out that libcurl's file:// code would close() a zero | Daniel Stenberg | |
file descriptor if given a non-existing file. | |||
2005-11-28 | Bryan Henderson | Daniel Stenberg | |
2005-11-24 | Doug Kaufman's set of patches to make curl build fine on DJGPP again using | Daniel Stenberg | |
configure. | |||
2005-11-17 | I extended a patch from David Shaw to make libcurl _always_ provide an error | Daniel Stenberg | |
string in the given error buffer to address the flaw mention on 21 sep 2005. | |||
2005-11-16 | Applied Albert Chin's patch that makes the libcurl.pc pkgconfig file get | Daniel Stenberg | |
installed on 'make install' time. | |||
2005-11-13 | Debian bug report 338681 by Jan Kunder: make curl better detect and report bad | Daniel Stenberg | |
limit-rate units: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338681 Now curl will return error if a bad unit is used. | |||
2005-11-13 | Thanks to this nice summary of poll() implementations: | Daniel Stenberg | |
http://www.greenend.org.uk/rjk/2001/06/poll.html and further tests by Eugene Kotlyarov, we now know that cygwin's poll returns only POLLHUP on remote connection closure so we check for that case (too) and re-enable poll for cygwin builds. | |||
2005-11-12 | Eugene Kotlyarov found out that cygwin's poll() function isn't doing things | Daniel Stenberg | |
right: http://curl.haxx.se/mail/archive-2005-11/0045.html so we now disable poll() and use select() on cygwin too (we already do the same choice on Mac OS X) | |||
2005-11-11 | Dima Barsky patched problem #1348930: the GnuTLS code completely ignored | Daniel Stenberg | |
client certificates! (http://curl.haxx.se/bug/view.cgi?id=1348930). | |||
2005-11-10 | Fun while it lasted. New mirror already out-of-date. | Daniel Stenberg | |
2005-11-10 | David Lang fixed IPv6 support for TFTP! | Daniel Stenberg | |
2005-11-10 | Introducing range stepping to the curl globbing support. Now you can specify | Daniel Stenberg | |
step counter by adding :[num] within the brackets when specifying a range. | |||
2005-11-08 | Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions since | Daniel Stenberg | |
we really have no use for reverse lookups of the address. I truly hope these are the last reverse lookups we had lingering in the code! | |||
2005-11-08 | SSPI-fix and a new mirror | Daniel Stenberg | |
2005-11-05 | CurlPas 2005-11-05 was released: http://curlpas.sf.net/ | Daniel Stenberg | |
2005-10-31 | Vilmos Nebehaj improved libcurl's LDAP abilities: | Daniel Stenberg | |
The LDAP code in libcurl can't handle LDAP servers of LDAPv3 nor binary attributes in LDAP objects. So, I made a quick patch to address these problems. The solution is simple: if we connect to an LDAP server, first try LDAPv3 (which is the preferred protocol as of now) and then fall back to LDAPv2. In case of binary attributes, we first convert them to base64, just like the openldap client does. It uses ldap_get_values_len() instead of ldap_get_values() to be able to retrieve binary attributes correctly. I defined the necessary LDAP macros in lib/ldap.c to be able to compile libcurl without the presence of libldap | |||
2005-10-29 | --max-redirs 0 | Daniel Stenberg | |
2005-10-27 | tommink[at]post.pl reported in bug report #1337723 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1337723) that curl could not upload binary data from stdin on Windows if the data contained control-Z (hex 1a) since that is treated as end-of-file when read in text mode. Gisle Vanem pointed out the fix, and I made both -T and --data-binary take advantage of it. | |||
2005-10-27 | Jaz Fresh pointed out that if you used "-r [number]" as was wrongly described | Daniel Stenberg | |
in the man page, curl would send an invalid HTTP Range: header. The correct way would be to use "-r [number]-" or even "-r -[number]". Starting now, curl will warn if this is discovered, and automatically append a dash to the range before passing it to libcurl. | |||
2005-10-25 | multi IP socket description leak with multi interface | Daniel Stenberg | |
2005-10-21 | Temprimus improved the MSVC makefile so that the static debug SSL libs are | Daniel Stenberg | |
linked to the executable and not to the libcurld.lib http://curl.haxx.se/bug/view.cgi?id=1326676 | |||
2005-10-21 | Bradford Bruce made the windows resolver code properly return | Daniel Stenberg | |
CURLE_COULDNT_RESOLVE_PROXY and CURLE_COULDNT_RESOLVE_HOST on resolving errors (as documented). | |||
2005-10-20 | Dave Dribin made libcurl understand and handle cases when the server | Daniel Stenberg | |
(wrongly) sends *two* WWW-Authenticate headers for Digest. While this should never happen in a sane world, libcurl previously got into an infinite loop when this occurred. Dave added test 273 to verify this. | |||
2005-10-20 | 2 mirrors, 1 binding release | Daniel Stenberg | |
2005-10-14 | Reverted the LIBCURL_VERSION_NUM change from October 6. As Dave Dribin | Daniel Stenberg | |
reported, the define is used by the configure script and is assumed to use the 0xYYXXZZ format. This made "curl-config --vernum" fail in the 7.15.0 release version. | |||
2005-10-13 | start working on 7.15.1 | Daniel Stenberg | |
2005-10-13 | 7.15.0 time | Daniel Stenberg | |
2005-10-06 | we all the next version 7.15.0 due to the new TFTP support | Daniel Stenberg | |
2005-10-05 | mention the recent fixes | Daniel Stenberg | |
2005-10-04 | Michael Wallner reported that the date parser had wrong offset stored for | Daniel Stenberg | |
the MEST and CEST time zones. | |||
2005-09-30 | a new mirror, but we don't increase the amount since one of the former ones | Daniel Stenberg | |
are now officially no longer considered a mirror... ;-) | |||
2005-09-27 | David Yan brought the Content-Range report | Daniel Stenberg | |
2005-09-27 | An anonymous submitter filed bug #1299181 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1299181) that identified a silly problem with Content-Range: headers with the 'bytes' keyword written in a different case than all lowercase! It would cause a segfault! | |||
2005-09-27 | TJ Saunders of the proftpd project identified and pointed out problems with | Daniel Stenberg | |
the modified FTPS negotiation change of August 19 2005. Thus, we revert the change back to pre-7.14.1 status. | |||
2005-09-19 | Dmitry Bartsevich made the SSPI support work on Windows 9x as well | Daniel Stenberg | |
2005-09-16 | recent changes | Daniel Stenberg | |
2005-09-06 | binding updates | Daniel Stenberg | |
2005-09-04 | mention the recent improvements | Daniel Stenberg | |
2005-09-01 | work on 7.14.2 starts now | Daniel Stenberg | |
2005-08-31 | ocurl release | Daniel Stenberg | |
2005-08-29 | Kevin Lussier pointed out a problem with curllib.dsp | Daniel Stenberg | |
2005-08-29 | spell-fix | Daniel Stenberg | |
2005-08-29 | Igor Polyakov fixed a rather nasty problem with the threaded name resolver | Daniel Stenberg | |
for Windows, that could lead to an Access Violation when the multi interface was used due to an issue with how the resolver thread was and was not terminated. | |||
2005-08-29 | Simon Josefson brought GNU GSS support | Daniel Stenberg | |
2005-08-24 | Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessible | Daniel Stenberg | |
from the command line tool with --ignore-content-length. This will make it easier to download files from Apache 1.x (and similar) servers that are still having problems serving files larger than 2 or 4 GB. When this option is enabled, curl will simply have to wait for the server to close the connection to signal end of transfer. I wrote test case 269 that runs a simple test that this works. | |||
2005-08-24 | valgrind version 3 renames the --logfile command line option to --log-file... | Daniel Stenberg | |
2005-08-24 | Fixed CA cert verification using GnuTLS with the default bundle, which | Daniel Stenberg | |
previously failed due to GnuTLS not allowing x509 v1 CA certs by default. |