aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-10-24tests the new -C - fixDaniel Stenberg
2003-10-24HTTP resume fixDaniel Stenberg
2003-10-24Resuming a download of an already downloaded document, that is trying to getDaniel Stenberg
a range of a document beyond its size, caused libcurl to "hang" until the server closed the connection and then it returned error 18. This is bad. This way, we don't return any error at all, which isn't nice either, as we need to alert the app somehow that the request range was out of size.
2003-10-24solaris build improvementDaniel Stenberg
2003-10-24Based on David Hull's fix in bug report 804599, we now check for solarisDaniel Stenberg
and gcc, to set the -mimpure-text link flag for linking the lib better.
2003-10-24don't select() forever, set a timeout so at least the test fails niceDaniel Stenberg
2003-10-24better name, it isn't httpsDaniel Stenberg
2003-10-24c-ares is the new name and ares_version() was addedDaniel Stenberg
2003-10-24Introducing ares_version(), so that we can have apps get version info aboutDaniel Stenberg
what particular ares version that is being used.
2003-10-24make it work with Negotiate support enabled tooDaniel Stenberg
2003-10-24runtests -t introducedDaniel Stenberg
2003-10-24improved the torture testingDaniel Stenberg
2003-10-24supports -l now to display the actual line that was prevented by memlimitDaniel Stenberg
2003-10-24if malloc fails, we must bail out nicelyDaniel Stenberg
2003-10-24Improved checks for bad memory situations and proper behaviour when weDaniel Stenberg
run out of memory.
2003-10-24better bailing-out cleanup if a malloc fails in the DNS cacheDaniel Stenberg
2003-10-24free all memory on failure before bailing out, not really necessary butDaniel Stenberg
my upcoming automated test gets crazy if not
2003-10-24the actual release-notes is new tooDaniel Stenberg
2003-10-24Introducing -t to "torture" the memory allocations/failing/bail-outing inDaniel Stenberg
curl and libcurl. -t is not used anywhere automated yet, and it does already identify memory leaks on failed allocations. Work to do.
2003-10-24produce a single summary of the amount of allocations on -vDaniel Stenberg
2003-10-24disable-eprt, fixed CA cert verficationDaniel Stenberg
2003-10-23Georg Horn's patch. -k is no longer mutually exclusive with --cacert andDaniel Stenberg
--capath. Using -k together with one of those just means that the result of the CA cert check is ignored (but displayed if -v is used).
2003-10-23Georg Horn's fixes to do different CA cert verifications. They can now beDaniel Stenberg
done even if the result is ignored, as some sites seem to require that.
2003-10-22encourage use of -c to store cookies instead of -DDaniel Stenberg
2003-10-22allow gdb to check the libtest dir for sources too (for the 500- tests)Daniel Stenberg
2003-10-22we continue to improve thingsDaniel Stenberg
2003-10-22make --disable-eprt work, based on Gisle Vanem's patchDaniel Stenberg
2003-10-22Dylan Ellicott added the vc-libcurl-ssl-dll targetDaniel Stenberg
2003-10-22Dylan Ellicott added the release-libcurl-ssl-dll targetDaniel Stenberg
2003-10-22Do the auth stuff at the end-of-headers and not at the start-of-body, asDaniel Stenberg
we might not get a body when we get a 401 with a set of WWW-Authenticate: headers. This fixes the problem Kevin Roth detected in 7.10.8-pre4 and pre5. Verified by test case 91.
2003-10-22Modified to be able to repeat Kevin Roth's problemDaniel Stenberg
2003-10-21AndresDaniel Stenberg
2003-10-21updated for mingw32Daniel Stenberg
2003-10-21pre5Daniel Stenberg
2003-10-21modified test 91 to look more like Kevin Roth's error caseDaniel Stenberg
2003-10-21test case 91 added, an attempt to repeat a problem reported by Kevin RothDaniel Stenberg
on Oct 20, 2003.
2003-10-21conn->user and conn->passwd will now always be set to point to something.Daniel Stenberg
If not user or password is set, they will point to a "" string.
2003-10-21no colons in user names with USERPWDDaniel Stenberg
2003-10-20allow no user and password for proxy too, BasicDaniel Stenberg
2003-10-20allow no user and no passwd when doing basic authDaniel Stenberg
2003-10-20lock the DNS cache properly before adding an entry when using asynch DNSDaniel Stenberg
2003-10-20run autoconf in the ares dir as well if the dir is present, after it hasDaniel Stenberg
been run "as usual"
2003-10-19Georg Horn patched Curl_read()Daniel Stenberg
2003-10-19better error output on SSL errors when receiving data - Georg Horn patchDaniel Stenberg
2003-10-19fixed the bug my previous change introducedDaniel Stenberg
2003-10-18minor fix to not shadow a variableDaniel Stenberg
2003-10-18builds warning-free with -Wshadow nowDaniel Stenberg
2003-10-18don't shadow 'socket'Daniel Stenberg
2003-10-18fixed gcc -Wshadow warningsDaniel Stenberg
2003-10-18removed gcc -Wshadow warningDaniel Stenberg