Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-26 | Fixed the test case to create only a single test file, which is all the | Dan Fandrich | |
test harness supports. | |||
2007-10-26 | Fixed a valgrind uninitialized variable error. | Dan Fandrich | |
2007-10-26 | Check that all servers in the <server> section are supported, not just | Dan Fandrich | |
the first. | |||
2007-10-26 | mention --static-libs as added in 7.17.1 | Daniel Stenberg | |
2007-10-26 | typecast to prevent compiler warning | Yang Tse | |
2007-10-26 | Detect, log and avoid storing a request with a negative size. | Yang Tse | |
2007-10-25 | Added the --static-libs option to curl-config | Dan Fandrich | |
2007-10-25 | Disable valgrind for this test to avoid the rlimit = soft rlimit problem | Dan Fandrich | |
found by Michal Marek. | |||
2007-10-25 | oops | Daniel Stenberg | |
2007-10-25 | Made libcurl built with NSS possible to ignore the peer verification. | Daniel Stenberg | |
Previously it would fail if the ca bundle wasn't present, even if the code ignored the verification results. | |||
2007-10-25 | Added test case 2004. | Dan Fandrich | |
Disable valgrind in test case 1004 due to a libtool bug. | |||
2007-10-25 | prevent compiler warnings about shadowing and one case of unused variable | Daniel Stenberg | |
2007-10-25 | Allow test server to handle binary POSTs. | Patrick Monnerat | |
Tests 35, 544 545 added: binary data POSTs. | |||
2007-10-25 | When valgrind is disabled in the test file, don't run it at all (as opposed | Dan Fandrich | |
to running it and ignoring its output). | |||
2007-10-25 | Don't show valgrind log files of other tests | Yang Tse | |
2007-10-25 | Michal Marek fixed the test script to be able to use valgrind even when the | Daniel Stenberg | |
lib is built shared with libtool. | |||
2007-10-25 | Don't assume there's a sessionhandle around when a connection is disconnected, | Daniel Stenberg | |
so do the data->reqdata.current_conn assignment when we know there is an easy handle existing! Fixes the valgrind report on test 509. | |||
2007-10-25 | fix the check | Daniel Stenberg | |
2007-10-25 | Fixed a TFTP memory leak. Enabled test 2003 to verify this. | Daniel Stenberg | |
2007-10-24 | Fixed the test TFTP server to support the >10000 test number notation | Dan Fandrich | |
Added test cases 2002 and 2003 (the latter disabled for now) | |||
2007-10-24 | enable 2000 and 2001 | Daniel Stenberg | |
2007-10-24 | Curl_ftp_disconnect() no longer relies on anything in the reqdata struct. That | Daniel Stenberg | |
was even mentioned to be bad in a comment! Should make test 2000 and 2001 work fine. Also, freedirs() now take a ftp_conn struct pointer which saves some extra unnecessary variable assignments. | |||
2007-10-24 | added clarifying comment | Daniel Stenberg | |
2007-10-24 | Added test cases 2000 and 2001 which test multiple protocols using the | Dan Fandrich | |
same easy handle Fixed the filecheck: make target to work outside the source tree | |||
2007-10-24 | Fixed the test FTP server to support the >10000 test number notation | Dan Fandrich | |
2007-10-24 | Missing double quotes | Yang Tse | |
2007-10-24 | Windows build targets have socklen_t definition in ws2tcpip.h but some | Yang Tse | |
versions of ws2tcpip.h do not have the definition. It seems that when the socklen_t definition is missing from ws2tcpip.h the definition for INET_ADDRSTRLEN is also missing, and that when one definition is present the other one also is available. | |||
2007-10-24 | Close log/server.input ASAP to avoid lengthy file lock on cygwin | Patrick Monnerat | |
2007-10-24 | Vladimir Lazarenko pointed out that we should do some 'mt' magic when | Daniel Stenberg | |
building with VC8 to get the "manifest" embedded to make fine stand-alone binaries. The maketgz and the src/Makefile.vc6 files were adjusted accordingly. | |||
2007-10-23 | Bug report #1812190 (http://curl.haxx.se/bug/view.cgi?id=1812190) points out | Daniel Stenberg | |
that libcurl tried to re-use connections a bit too much when using non-SSL protocols tunneled over a HTTP proxy. | |||
2007-10-23 | File is not a protocol that can deal with "persistancy" | Yang Tse | |
2007-10-23 | Read callback should return 0 when no more data left | Yang Tse | |
2007-10-23 | Fix compiler warning: subscript has type `char' | Yang Tse | |
2007-10-22 | removed dependency on gettimeofday() since we use only 1 sec resolution here. | Gunter Knauf | |
2007-10-22 | removed 105, it is now assumed to be fixed! | Daniel Stenberg | |
105 - "invalid free after an http redirect to ftp" | |||
2007-10-22 | Michal Marek forwarded the bug report | Daniel Stenberg | |
https://bugzilla.novell.com/show_bug.cgi?id=332917 about a HTTP redirect to FTP that caused memory havoc. His work together with my efforts created two fixes: #1 - FTP::file was moved to struct ftp_conn, because is has to be dealt with at connection cleanup, at which time the struct HandleData could be used by another connection. Also, the unused char *urlpath member is removed from struct FTP. #2 - provide a Curl_reset_reqproto() function that frees data->reqdata.proto.* on connection setup if needed (that is if the SessionHandle was used by a different connection). | |||
2007-10-22 | Removed 93 and 100, there's no work on these and they're not critical in any | Daniel Stenberg | |
way: 93 - Digest for IIS fix (subject for removal) 100 - icc segmentation faults (subject for removal) | |||
2007-10-22 | #103 is fixed | Daniel Stenberg | |
2007-10-22 | mention Patrick Monnerat's recent work on the postfields problems | Daniel Stenberg | |
2007-10-22 | Bug report #1815530 (http://curl.haxx.se/bug/view.cgi?id=1815530) points out | Daniel Stenberg | |
that specifying a proxy with a trailing slash didn't work (unless it also contained a port number). | |||
2007-10-20 | Mohun Biswas sent a patch to fix generated MSVC8 makefiles. | Gunter Knauf | |
2007-10-20 | We use this ZERO_NULL to avoid picky compiler warnings, | Yang Tse | |
when assigning a NULL pointer to a function pointer var. | |||
2007-10-20 | Fix compiler warning: conversion from "int" to "unsigned short" may lose ↵ | Yang Tse | |
significant bits | |||
2007-10-19 | Add custom check for WINLDAP libraries. | Yang Tse | |
In CURL_CHECK_LIBS_WINLDAP and CURL_CHECK_LIBS_LDAP, check first with no additional library even when the optional list of libraries has been given. | |||
2007-10-19 | Fix message shown when detecting icc version | Yang Tse | |
2007-10-19 | Avoid shadowing a global declaration | Yang Tse | |
2007-10-18 | Renamed a variable to avoid shadowing a global declaration | Yang Tse | |
2007-10-18 | Renamed internal function to avoid a variable shadowing it | Yang Tse | |
2007-10-18 | Fix compiler warning: feupdateenv is not implemented and will always fail. | Yang Tse | |
Specifically for linux x86-64 with Intel's icc. | |||
2007-10-18 | Sync PLATFORM_AIX_V3 detection and CURL_CC_DEBUG_OPTS() | Yang Tse | |
icc warning level with libcurl's |