aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-10-31Sync comment with code and add three messages moreYang Tse
2006-10-30Address some pitfalls in the rlimit() function check that wereYang Tse
preventing execution of this test on many platforms
2006-10-30Allow 'curl_*printf()' to be used in C++ programs.Gisle Vanem
2006-10-30add contributors from the 7.16.0 releaseDaniel Stenberg
2006-10-30start working on 7.16.1Daniel Stenberg
2006-10-297.16.0 materialDaniel Stenberg
2006-10-29corrected how tests/memanalyze.pl is usedDaniel Stenberg
2006-10-29Compiler warning fixYang Tse
2006-10-29Make more human readable and maintainable previousYang Tse
compiler warning fix since it was Ok and actually avoids the targeted compiler warning.
2006-10-29updated to current statusDaniel Stenberg
2006-10-29updated to reflect realityDaniel Stenberg
2006-10-27a small unification of the error text on failed server startupsDaniel Stenberg
2006-10-27Sync with lib/setup_once.hYang Tse
2006-10-27Compiler warning fix.Yang Tse
Assigning the const value zero to a pointer to function results in a null pointer value assignment to the function pointer. Assignment of any nonzero value is what should result in a implementation compiler dependent result. Since what we want to do here is the first case, this should not trigger compiler warnings related with conversions from 'pointer to data' to 'pointer to function'. Our autobuild test suite will judge.
2006-10-27Fixed 'x_TYPE_ARG2' to match prototypes of recv() and send().Gisle Vanem
2006-10-27Get rid of the special sread()+swrite() for MSDOS. Use recv()Gisle Vanem
and send(). Added needed HAVE_x defines.
2006-10-27Added 'RECV_TYPE_ARGx' needed in getinfo.c.Gisle Vanem
2006-10-27Update copyright year, since the file has been modifiedYang Tse
2006-10-27Compiler warning fixYang Tse
2006-10-2730 seconds isn't long enough for this test on a loaded server.Yang Tse
2006-10-27Do an explicit typecast of data pointers to function pointersYang Tse
to avoid picky compiler warnings, since this is what we want!
2006-10-26Use proper 'stat' structure for fstat(). I.e. 'struct _stati64' and ↵Gisle Vanem
'_fstati64()' on Win32.
2006-10-26Improved rlimit logic:Yang Tse
- Take in account RLIM_INFINITY. - Verify that soft limit is actually changed when doing so. - Show errno in case getrlimit or setrlimit fails. - Keep file descriptors open only while runing this test.
2006-10-26Fix Curl_open() not reporting failure when allocation of theYang Tse
buffer used to store headers in the SessionHandle failed.
2006-10-2630 seconds isn't long enough for this test on a loaded server.Yang Tse
2006-10-25a Smalltalk bindingDaniel Stenberg
2006-10-25Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for theDaniel Stenberg
case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401 and 407 cases when auth credentials is given, but we've now covered this somewhat more. You might get some amounts of headers transferred before this situation is detected, like for when a "100-continue" is received as a response to a POST/PUT and a 401 or 407 is received immediately afterwards. Added test 281 to verify this change.
2006-10-25Fixed "'x' might be used uninitialized in this function" warning.Gisle Vanem
Removed trailing whitespace.
2006-10-25Added '-d' option for Watt32 targets. Added cvs id.Gisle Vanem
2006-10-25Compiler warning fixYang Tse
2006-10-25Add project notice and file IdYang Tse
2006-10-25Compiler warning fixYang Tse
2006-10-25updated copyright yearDaniel Stenberg
2006-10-25Use curl_global_init() and curl_global_cleanup().Yang Tse
Improve cleanup in case of initialization failure.
2006-10-24other pipelining fixes by Ravi Pratap, that now makes pipelines get used betterDaniel Stenberg
2006-10-24Abort test if it seems that it would have run forever. This is just to preventYang Tse
test hanging and actually is an indication that there's a condition that is not being properly handled at some point in the library. Remove a pair of braces and adjust indentation appropriately.
2006-10-23the check in ConnectionExists() for not re-using a non-resolved connection nowDaniel Stenberg
applies for asynch name resolves in general and not only ares
2006-10-23Ravi Pratap provided a major update with pipelining fixes. We also no longerDaniel Stenberg
re-use connections (for pipelining) before the name resolving is done.
2006-10-23Avoid trying to compare more than strlen bytes.Yang Tse
2006-10-2330 seconds isn't long enough for this test on a loaded server.Dan Fandrich
2006-10-23Replace is*() macros with our own IS*() ones.Yang Tse
2006-10-22Nir Soffer fixed a cp line and got rid of an rmDaniel Stenberg
2006-10-22until we learn how to use Makefile.inc from here, I've added socks.o in hereDaniel Stenberg
as well
2006-10-21Provide 'datarootdir' parameter to shutup configuration warning,Yang Tse
'packages/EPM/curl.list.in seems to ignore the --datarootdir setting'
2006-10-21Fix misplaced runtime library specification for 'release-dll' targetYang Tse
2006-10-21rely on the global LDADD instead of having specific ones for every programDaniel Stenberg
2006-10-21Nir Soffer for his Makefile.am fixDaniel Stenberg
2006-10-21Fix copy-paste errorYang Tse
2006-10-21Compiler warning fixYang Tse
2006-10-21Nir Soffer made the tests/libtest/Makefile.am use a proper variable for allDaniel Stenberg
the single test applications' link and dependences, so that you easier can override those from the command line when using make.