Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-02 | include progress.h for Curl_pgrsSetDownloadCounter function prototype | Yang Tse | |
2009-11-02 | - As reported independent by both Stan van de Burgt and Didier Brisebourg, | Daniel Stenberg | |
CURLINFO_SIZE_DOWNLOAD (the -w variable size_download) didn't work when getting data from ldap! | |||
2009-11-02 | describe the cmake situation | Daniel Stenberg | |
2009-10-31 | - Gabriel Kuri reported a problem with CURLINFO_CONTENT_LENGTH_DOWNLOAD if the | Daniel Stenberg | |
download was 0 bytes, as libcurl would then return the size as unknown (-1) and not 0. I wrote a fix and test case 566 to verify it. | |||
2009-10-30 | - Liza Alenchery mentioned a problem with re-used SCP connection when a bad | Daniel Stenberg | |
auth is used, as it caused a crash. I failed to repeat the issue, but still made a change that now forces the TCP connection used for a freed SCP session to get closed and not be re-used. | |||
2009-10-30 | - "Tom" posted a bug report that mentioned how libcurl did wrong when doing a | Daniel Stenberg | |
POST using a read callback, with Digest authentication and "Transfer-Encoding: chunked" enforced. I would then cause the first request to be wrongly sent and then basically hang until the server closed the connection. I fixed the problem and added test case 565 to verify it. | |||
2009-10-29 | Fix compiler warning: control reaches end of non-void function | Yang Tse | |
2009-10-29 | Take in account c-ares 1.6.1 will use __declspec function decoration | Yang Tse | |
for Win32 and Symbian unless CARES_STATICLIB is defined to use static library linkage. | |||
2009-10-28 | Since the NSS lib closes the socket the memory tracking system wrongly gets a | Daniel Stenberg | |
false positive on a leaked socket, so this introduces a way to tell the system that the socket is indeed closed without explicitly closing it! | |||
2009-10-27 | Fix spelling | Yang Tse | |
2009-10-27 | Fix Pelles C Win32 target compilation issues | Yang Tse | |
2009-10-25 | - Dima Barsky made the curl cookie parser accept cookies even with blank or | Daniel Stenberg | |
unparsable expiry dates and then treat them as session cookies - previously libcurl would reject cookies with a date format it couldn't parse. Research shows that the major browser treat such cookies as session cookies. I modified test 8 and 31 to verify this. | |||
2009-10-21 | Update memory tracking/debugging reference | Yang Tse | |
2009-10-21 | spelling corrections | Daniel Stenberg | |
2009-10-21 | Detect when msvc 6.0 is in use without PSDK installed, intentionally | Yang Tse | |
fail to build when this happens, and show an appropriate error. The brave of heart can circumvect this. Defining ALLOW_MSVC6_WITHOUT_PSDK in lib/config-win32.h, although absolutely discouraged and unsupported, this will allow the die hard MSVC hacker to build in such a discouraged environment. The actually supported 'fix' is to install 'February 2003 Platform SDK' a.k.a. 'Windows Server 2003 PSDK' which can be freely downloaded from http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm | |||
2009-10-19 | added cast macros to silent compiler warnings with 64-bit systems. | Gunter Knauf | |
2009-10-18 | - Ray Dassen provided a patch in Debian's bug tracker (bug number #551461) | Daniel Stenberg | |
that now makes curl_getdate(3) actually handles RFC 822 formatted dates that use the "single letter military timezones". http://www.rfc-ref.org/RFC-TEXTS/822/chapter5.html has the details. | |||
2009-10-18 | Check for basename() is now done the same as other function checks | Yang Tse | |
2009-10-18 | - Fixed memory leak in the SCP/SFTP code as it never freed the knownhosts | Daniel Stenberg | |
data! | |||
2009-10-18 | John Dennis filed bug report #2873666 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2873666) which identified a problem which made libcurl loop infinitely when given incorrect credentials when using HTTP GSS negotiate authentication. | |||
2009-10-18 | - Kevin Baughman found a double close() problem with libcurl-NSS, as when | Daniel Stenberg | |
libcurl called NSS to close the SSL "session" it also closed the actual socket. | |||
2009-10-17 | README.NSS is gone | Daniel Stenberg | |
2009-10-14 | we only need to call ASN1_STRING_length() if ASN1_STRING_type() detects UTF-8, | Gunter Knauf | |
else ASN1_STRING_to_UTF8() returns the string length. | |||
2009-10-13 | Update LDAP URL format reference | Yang Tse | |
2009-10-08 | Attempt to silence bogus compiler warning: "Potential null pointer dereference" | Yang Tse | |
2009-10-08 | Fix compiler warning: addition result could be truncated before cast to ↵ | Yang Tse | |
bigger sized type | |||
2009-10-07 | fix gcc warnings in lib/nss.c | Kamil Dudka | |
2009-10-07 | removed NSS README since the mentioned problems are now solved. | Gunter Knauf | |
2009-10-06 | Fix comment | Yang Tse | |
2009-10-05 | more files to ignore | Yang Tse | |
2009-10-01 | - Tom Mueller correctly reported in bug report #2870221 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2870221) that libcurl returned an incorrect return code from the internal trynextip() function which caused him grief. This is a regression that was introduced in 7.19.1 and I find it strange it hasn't hit us harder, but I won't persue into figuring out exactly why. | |||
2009-10-01 | - Constantine Sapuntzakis: The current implementation will always set | Daniel Stenberg | |
SO_SNDBUF to CURL_WRITE_SIZE even if the SO_SNDBUF starts out larger. The patch doesn't do a setsockopt if SO_SNDBUF is already greater than CURL_WRITE_SIZE. This should help folks who have set up their computer with large send buffers. | |||
2009-09-28 | Removed some extraneous carriage return characters | Dan Fandrich | |
2009-09-28 | fix compiler warning: conversion from "long" to "size_t" may lose sign | Yang Tse | |
2009-09-28 | libcurl private function Curl_memrchr() now in curl_memrchr.c and curl_memrchr.h | Yang Tse | |
2009-09-27 | tiny indent fix | Daniel Stenberg | |
2009-09-27 | - I introduced a maximum limit for received HTTP headers. It is controlled by | Daniel Stenberg | |
the define CURL_MAX_HTTP_HEADER which is even exposed in the public header file to allow for users to fairly easy rebuild libcurl with a modified limit. The rationale for a fixed limit is that libcurl is realloc()ing a buffer to be able to put a full header into it, so that it can call the header callback with the entire header, but that also risk getting it into trouble if a server by mistake or willingly sends a header that is more or less without an end. The limit is set to 100K. | |||
2009-09-27 | unify two very similar code sections into one single function, header_append() | Daniel Stenberg | |
2009-09-26 | - John P. McCaskey posted a bug report that showed how libcurl did wrong when | Daniel Stenberg | |
saving received cookies with no given path, if the path in the request had a query part. That is means a question mark (?) and characters on the right side of that. I wrote test case 1105 and fixed this problem. | |||
2009-09-26 | - Implemented a protocol independent way to specify blocking direction, used by | Kamil Dudka | |
transfer.c for blocking. It is currently used only by SCP and SFTP protocols. This enhancement resolves an issue with 100% CPU usage during SFTP upload, reported by Vourhey. | |||
2009-09-25 | minor whitespace edit | Daniel Stenberg | |
2009-09-25 | - Chris Mumford filed bug report #2861587 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2861587) identifying that libcurl used the OpenSSL function X509_load_crl_file() wrongly and failed if it would load a CRL file with more than one certificate within. This is now fixed. | |||
2009-09-25 | fix compiler warning: end-of-loop code not reached | Yang Tse | |
2009-09-24 | fix compiler warning: variable "sni" was set but never used | Yang Tse | |
2009-09-21 | added support for new SQLite cert database format: added a runtime check for ↵ | Gunter Knauf | |
version 3.12.0, and depending on the result add 'sql:' prefix to cert database directory so that newer SQLIte database format works. | |||
2009-09-21 | added aditional check for the directory specified with SSL_DIR, and fall ↵ | Gunter Knauf | |
back to hardcoded directory if not a valid directory. | |||
2009-09-18 | fix compiler warning: comparison between signed and unsigned | Yang Tse | |
2009-09-17 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2009-09-17 | fix compiler warning: conversion to 'size_t' from 'curl_off_t' may alter its ↵ | Yang Tse | |
value | |||
2009-09-17 | Moved Curl_rand() and Curl_srand() code from formdata.c and formdata.h | Yang Tse | |
into curl_rand.c and curl_rand.h |