aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-04-21test case 160 "should work" nowDaniel Stenberg
2004-04-21Fix the "lingering close" problem when re-using a connection, as test caseDaniel Stenberg
160 shows. We got no data and we attempted to re-use a connection. This might happen if the connection was left alive when we were done using it before, but that was closed when we wanted to read from it again. Bad luck. Retry the same request on a fresh connect! Deleted the sockerror variable again, it serves no purpose anymore.
2004-04-21increase the headerbytecount for incoming "headers"Daniel Stenberg
2004-04-21log the WAIT commandDaniel Stenberg
2004-04-20cleanup leftoversDaniel Stenberg
2004-04-20test160 - for a more controlled testing of the case where libcurl startsDaniel Stenberg
to re-use a connection that is closed when re-used and libcurl should then make a new fresh connection and use instead
2004-04-20Cleaned up hostname/name/gname and path/ppath confusion. Removed the fixed-Daniel Stenberg
length limit of the hostname part of the URL.
2004-04-20new mirror and one that changed domainDaniel Stenberg
2004-04-20make the first response get a "connection: close" header as that is howDaniel Stenberg
most 1.1 connections will be closed. The case where it gets closed anyway is subject for a new separate test.
2004-04-19changed the logging to work when the logfile is removed during testingDaniel Stenberg
2004-04-19Make the server include "Connection: close" in the headers of the repliesDaniel Stenberg
it actually will close. This is after all what HTTP 1.1 says a server should do.
2004-04-19Gisle Vanem corrected a mistake in a recent progress fixDaniel Stenberg
2004-04-17Gisle Vanem: patches to make sws.c compile under MingW/MSVC isDaniel Stenberg
attached. And some cosmetic fixes.
2004-04-17Gisle made a failed connect output the reason for itDaniel Stenberg
2004-04-17NDEBUG should not be defined when CURLDEBUG isDaniel Stenberg
2004-04-16adding issue 36 to be fixed before releaseDaniel Stenberg
2004-04-16don't display the . and .. files when dumping the log/ contentsDaniel Stenberg
2004-04-16remade the logging function to better deal with removed logfiles duringDaniel Stenberg
the execution of the tests
2004-04-15issue 31 - fix windows multi interface is now correctedDaniel Stenberg
2004-04-15clarified that select() timeouts should always remain rather shortDaniel Stenberg
2004-04-15my test suite editsDaniel Stenberg
2004-04-15change the log format to look similar to swsDaniel Stenberg
added various logging info
2004-04-15clean the log directory between each single test, so that we can betterDaniel Stenberg
display all logs and only logs with relevant data when a test fails and -p is used.
2004-04-15ftp->dirs[] is no longer terminated with a zero entry but ftp->dirdepthDaniel Stenberg
should be used
2004-04-15removed the fixed dir depth limit in the FTP codeDaniel Stenberg
2004-04-14two ipresolve fixesDaniel Stenberg
2004-04-14format fixDaniel Stenberg
2004-04-14asking for CURL_IPRESOLVE_V6 when ipv6 addresses can't be resolved willDaniel Stenberg
now cause the resolve function to return NULL immediately
2004-04-14Gisle Vanem made the -4/-6 actually get set tooDaniel Stenberg
2004-04-14Curl_wait_for_resolv() could hang due to the bad timeout timer resolution andDaniel Stenberg
some bad thinking on my part.
2004-04-14several changesDaniel Stenberg
2004-04-14display interesting log files on failure, if -p is usedDaniel Stenberg
2004-04-14enable verbose as wellDaniel Stenberg
2004-04-14Added test case 511 in an attempt to repeat bug report #934666 "storage leakDaniel Stenberg
in ftp.c", but it shows no leaking.
2004-04-13minor format fixDaniel Stenberg
2004-04-13eh, these can't be used for poll()! ;-)Daniel Stenberg
2004-04-13additional infoDaniel Stenberg
2004-04-13Gisle Vanem's fix that makes the multi interface work on Windows again evenDaniel Stenberg
when not using ares.
2004-04-13spell fixesDaniel Stenberg
2004-04-13more newsDaniel Stenberg
2004-04-13proper typecast to prevent compiler warningDaniel Stenberg
2004-04-13removed the BUGS section since it offers nothing goodDaniel Stenberg
2004-04-131.2.0Daniel Stenberg
2004-04-13remove an long time #defined struct member and use the actual "real" nameDaniel Stenberg
instead to make it easier to find/read
2004-04-13Moved the 'tcp_nodelay' member to the proper 'UserDefined' struct within theDaniel Stenberg
sessionhandle to make the duphandle() function work as supposed. Also tried to start document functions the doxygen way (in the headers of the functions). Can't make it work though...
2004-04-13move issue 35 (hostip.c cleanup) forward, I don't feel like doing that nowDaniel Stenberg
2004-04-13full-test passes -p to runtests as well to get more details in case of failureDaniel Stenberg
2004-04-13Initial support for dumping the contents of the files in log/ when failingDaniel Stenberg
when -p is used. For easier bug-hunting of autobuild failures. This still only shows what files that are present in log/, as I believe we need to filter which files we show on a failure.
2004-04-12somewhat safer typecasting in case sizeof(long) != sizeof(void *) (is thereDaniel Stenberg
even such platforms?)
2004-04-11David Byron's patch for MSVC builds with zlibDaniel Stenberg