aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-01-11Fix '!if' expression.Gisle Vanem
2005-01-11".\lib\multi.h" shadows for <curl/multi.h> in Watcom.Gisle Vanem
Force including ../include/curl/multi.h.
2005-01-11Cyrill Osterwalder posted a detailed analysis about a bug that occurs whenDaniel Stenberg
using a custom Host: header and curl fails to send a request on a re-used persistent connection and thus creates a new connection and resends it. It then sent two Host: headers. Cyrill's analysis was posted here: http://curl.haxx.se/mail/archive-2005-01/0022.html
2005-01-10Bruce Mitchener identified (bug report #1099640) the never-ending SOCKS5Daniel Stenberg
problem with the version byte and the check for bad versions. Bruce has lots of clues on this, and based on his suggestion I've now removed the check of that byte since it seems to be able to contain 1 or 5.
2005-01-10Use Curl_easy_addmulti() to clear associations from easy handles to multiDaniel Stenberg
handles. Include multi.h to get proto.
2005-01-10edited wordingDaniel Stenberg
2005-01-10Pavel Orehov reported memory problems with the multi interface in bug reportDaniel Stenberg
#1098843. In short, a shared DNS cache was setup for a multi handle and when the shared cache was deleted before the individual easy handles, the latter cleanups caused read/writes to already freed memory.
2005-01-10Hzhijun reported a memory leak in the SSL certificate code, that leaked theDaniel Stenberg
remote certificate name when it didn't match the used host name.
2005-01-08Note about the static lib requirement; -DCURL_STATICLIB.Gisle Vanem
2005-01-08Watcom additions.Gisle Vanem
2005-01-08Added Watcom targets.Gisle Vanem
2005-01-08New file.Gisle Vanem
2005-01-08Added Makefile.Watcom to EXTRA_DIST.Gisle Vanem
2005-01-07three recent bug fixesDaniel Stenberg
2005-01-07disable the valgrind log checkingDaniel Stenberg
2005-01-07fixed the valgrind log check and make it possible to disable it for a specificDaniel Stenberg
test, see test 509
2005-01-07added test 199Daniel Stenberg
2005-01-06prevent a single byte read outside the string in test case 39Daniel Stenberg
2005-01-06fixed #1097019, multiple GET posts (-G) errorDaniel Stenberg
2005-01-05recent eventsDaniel Stenberg
2005-01-04Changed curl.dll to libcurl.dll.Gisle Vanem
2005-01-04Minor comment fix.Gisle Vanem
2005-01-04just narrowed some text to fit within 80 colsDaniel Stenberg
2005-01-04Removed _WIN32_WINNT to support IPv6 under Win-2K.Gisle Vanem
2005-01-03Marty Kuhrt's VMS updateDaniel Stenberg
2005-01-02reverted the bad naming of the implib namesDaniel Stenberg
2005-01-02Alex Neblett's minor updateDaniel Stenberg
2004-12-26nah, don't use the system's getpass() function since it too often is limitedDaniel Stenberg
to 8(!) or similar lengths passwords
2004-12-25issue 54 - this takes sweatDaniel Stenberg
2004-12-25Test case 241 fails on all systems that support IPv6 but that don't have theDaniel Stenberg
host name 'ip6-localhost' in /etc/hosts (or similar) since the test case uses that host name to test the IPv6 name to address resolver.
2004-12-25--protocols, license, src/config.h.inDaniel Stenberg
2004-12-25./src/config.h.in is now removed from CVS. It is copied from theDaniel Stenberg
lib/config.h.in file by buildconf
2004-12-25My reimplementation and cleanup of the getpass source code. We officially noDaniel Stenberg
longer use Angus Mackay's getpass code due to the weirdo license his code was donated to us under.
2004-12-24mention the new --protocolsDaniel Stenberg
2004-12-24David Shaw added --protocols, and thus the --feature no longer mentions whatDaniel Stenberg
protocols that are disabled.
2004-12-23Added LDAP library issue.Dan Fandrich
2004-12-23recent changesDaniel Stenberg
and Merry Christmas!
2004-12-23David Shaw fixed the disable variables so that curl-config --feature worksDaniel Stenberg
correctly!
2004-12-22issue 47 in next release?Daniel Stenberg
2004-12-22Rune Kleveland fixed a minor memory leak for received cookies with the (rare)Daniel Stenberg
version attribute set.
2004-12-22Marcin Konicki provided two configure fixes and a source fix to make curlDaniel Stenberg
build out-of-the-box on BeOS.
2004-12-22C ensures that static variables are initialized to 0Dan Fandrich
2004-12-22added CURLINFO_HTTP_CONNECTCODEDaniel Stenberg
2004-12-22uh, fixed!Daniel Stenberg
2004-12-22Added: 4 protocols we _could_ support and the CONNECT HTTP/1.0 detail we mightDaniel Stenberg
fix one day.
2004-12-21more about error codesDaniel Stenberg
2004-12-21test enforced chunked encoding with PUT on a local fileDaniel Stenberg
2004-12-21Added test case 217 that verified CURLINFO_HTTP_CONNECTCODE, and I made theDaniel Stenberg
-w option support 'http_connect' to make it easier to verify!
2004-12-21oops, variables first then codeDaniel Stenberg
2004-12-21Prevent failf() from using the va_list variable more than once.Daniel Stenberg
See bug report #1088962 and Single Unix Specification: http://www.opengroup.org/onlinepubs/007908799/xsh/vfprintf.html