aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.0c-ares-1_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
2004-04-11updated to not include the msvc-generated filesDaniel Stenberg
2004-04-11when checked out from CVS, run this to generate the proper scriptsDaniel Stenberg
2004-04-09Dirk Manske increased the resolution for what the CURLINFO_*_TIME return.Daniel Stenberg
2004-04-08we're working on 1.2.0 nowDaniel Stenberg
2004-04-07added test 159, use --ntlm together with -0Daniel Stenberg
2004-04-07getting only a 100 Continue response and nothing else, when talking HTTP,Daniel Stenberg
is now treated as an error by libcurl
2004-04-07--limit-rate using -d or -F does not workDaniel Stenberg
2004-04-07renamed the strtoofft() macro to curlx_strtoofft() to adjust to the curlx_*Daniel Stenberg
concept, and added lib/README.curlx to explain details about it
2004-04-07Use curl_off_t for the limit rate values to support REALLY huge values onDaniel Stenberg
such platforms that support large files.
2004-04-06mention getting windows builds to work after rearrangementsDaniel Stenberg
2004-04-06Moved long-standing issues over from TODO-RELEASE to the more long-term TODODaniel Stenberg
file.
2004-04-06the memory leak on windows have been addressedDaniel Stenberg
2004-04-06require ssl since ntlm needs itDaniel Stenberg
2004-04-06New authentication code added, particularly noticable when doing POST or PUTDaniel Stenberg
with Digest or NTLM. libcurl will now use HEAD to negotiate the authentication and when done perform the requested POST.
2004-04-06mention the man page updates from the other dayDaniel Stenberg
2004-04-06the pack_hostent() proto isn't used/needed with ipv6 is enabled.Daniel Stenberg
time to restructure this source file!
2004-04-06Gisle Vanem's fix for bug item #927979 reported by Nathan O'Sullivan.Daniel Stenberg
Good enough?