Daniel Stenberg [Thu, 30 Nov 2006 09:21:21 +0000 (09:21 +0000)]
the extra copy of downloads should be fixed too
Daniel Stenberg [Wed, 29 Nov 2006 21:47:22 +0000 (21:47 +0000)]
two more
Daniel Stenberg [Wed, 29 Nov 2006 14:39:50 +0000 (14:39 +0000)]
Is CURLOPT_FORBID_REUSE broken?
Daniel Stenberg [Mon, 27 Nov 2006 22:07:56 +0000 (22:07 +0000)]
adding notes of what to work on and fix before next release
Daniel Stenberg [Mon, 27 Nov 2006 13:38:32 +0000 (13:38 +0000)]
no need to access it with conn->data since data is already a local variable
holding the conn->data value
Daniel Stenberg [Sat, 25 Nov 2006 13:32:48 +0000 (13:32 +0000)]
added the new test 282
Daniel Stenberg [Sat, 25 Nov 2006 13:32:04 +0000 (13:32 +0000)]
Venkat Akella found out that libcurl did not like HTTP responses that simply
responded with a single status line and no headers nor body. Starting now, a
HTTP response on a persistent connection (i.e not set to be closed after the
response has been taken care of) must have Content-Length or chunked
encoding set, or libcurl will simply assume that there is no body.
To my horror I learned that we had no less than 57(!) test cases that did bad
HTTP responses like this, and even the test http server (sws) responded badly
when queried by the test system if it is the test system. So although the
actual fix for the problem was tiny, going through all the newly failing test
cases got really painful and boring.
Daniel Stenberg [Sat, 25 Nov 2006 09:49:29 +0000 (09:49 +0000)]
James Housley fixed SCP downloading by setting the maxdownload.
Yang Tse [Sat, 25 Nov 2006 01:02:52 +0000 (01:02 +0000)]
Make sure RETSIGTYPE is properly defined
Daniel Stenberg [Fri, 24 Nov 2006 22:14:39 +0000 (22:14 +0000)]
James Housley did lots of work and introduced SFTP downloads.
Yang Tse [Fri, 24 Nov 2006 16:38:58 +0000 (16:38 +0000)]
Define HAVE_SIGNAL_H, HAVE_SIG_ATOMIC_T and HAVE_SIG_ATOMIC_T_VOLATILE
as appropriate for platforms that don't have autotools support
Daniel Stenberg [Wed, 22 Nov 2006 22:54:41 +0000 (22:54 +0000)]
Michael Wallner fixed this problem: When I set domains in the options
struct, and there are domain/search entries in /etc/resolv.conf, the domains
of the options struct will be overridden.
Daniel Stenberg [Wed, 22 Nov 2006 22:51:01 +0000 (22:51 +0000)]
Install ares_dns.h too
Yang Tse [Wed, 22 Nov 2006 18:41:34 +0000 (18:41 +0000)]
Added a check in configure that verifies if <signal.h> is available,
defining HAVE_SIGNAL_H if the header is available.
Added a check in configure that tests if the sig_atomic_t type is
available, defining HAVE_SIG_ATOMIC_T if it is available. Providing
a suitable default in setup_once.h if not available.
Added a check in configure that tests if the sig_atomic_t type is
already defined as volatile, defining HAVE_SIG_ATOMIC_T_VOLATILE
if it is available and already defined as volatile.
Daniel Stenberg [Tue, 21 Nov 2006 07:45:49 +0000 (07:45 +0000)]
new french mirror
Yang Tse [Mon, 20 Nov 2006 16:58:41 +0000 (16:58 +0000)]
Revert ftpserver.pl back to revision 1.74 Adding change done in 1.76
This is done to back out changes done in revisions 1.77 and 1.75
Yang Tse [Mon, 20 Nov 2006 16:58:04 +0000 (16:58 +0000)]
Revert runtests.pl back to revision 1.212
This is done to back out changes done from revisions 1.213 to 1.217
Yang Tse [Mon, 20 Nov 2006 16:57:01 +0000 (16:57 +0000)]
Revert ftp.pm back to revision 1.5 Adding copyright notice.
This is done to back out changes done from revisions 1.6 to 1.10
Yang Tse [Mon, 20 Nov 2006 10:35:25 +0000 (10:35 +0000)]
Add some message logging
Yang Tse [Mon, 20 Nov 2006 06:22:51 +0000 (06:22 +0000)]
stop slaves before stopping servers
Yang Tse [Mon, 20 Nov 2006 03:25:17 +0000 (03:25 +0000)]
Revert to KILL test servers until all test servers
have proper TERM and INT signal handlers implemented.
Daniel Stenberg [Sun, 19 Nov 2006 22:48:40 +0000 (22:48 +0000)]
log the sleep, like when done in test 190
Daniel Stenberg [Sun, 19 Nov 2006 21:55:34 +0000 (21:55 +0000)]
Frank Teo provided an updated, mostly docs changed
Yang Tse [Sun, 19 Nov 2006 03:47:56 +0000 (03:47 +0000)]
Avoid passing child pid and test server pid, using the running
servers hash, and adjust message arguments accordingly.
Yang Tse [Sun, 19 Nov 2006 03:47:11 +0000 (03:47 +0000)]
Comment out the use of the "warnings" module now that ftp.pm seems to
be clear of warnings. Uncomment it if this module is further modified.
The "warnings" module requires perl 5.006 or later. Previous perl
versions don't have it and die on missing modules.
Daniel Stenberg [Sat, 18 Nov 2006 14:46:33 +0000 (14:46 +0000)]
new ruby binding, new tclcurl release
Yang Tse [Sat, 18 Nov 2006 04:07:01 +0000 (04:07 +0000)]
Avoid keeping dupe pids When forked pid and test server pid is the same one.
Yang Tse [Sat, 18 Nov 2006 04:05:42 +0000 (04:05 +0000)]
Fix warning "Use of uninitialized value in ...".
If the list has only one item avoid sort subroutine.
Yang Tse [Fri, 17 Nov 2006 16:44:22 +0000 (16:44 +0000)]
The hash of running servers is now a hash of hashes which for each running
server holds not only its two main pids, but also the pidfile of the test
server and the 'slavepidfiles' for ftp* servers. This allows a better control
when stopping servers.
Now from runtests.pl when test servers are stopped they are signalled in
sequence TERM, INT and KILL allowing time in between for them to die. This
will give us a chance of gracefully stopping test servers, which we didn't
have when we were killing them in first instance.
Gisle Vanem [Wed, 15 Nov 2006 05:35:35 +0000 (05:35 +0000)]
Call libssh2_session_free() to release memory allocated during
libssh2 startup.
Gisle Vanem [Tue, 14 Nov 2006 20:26:13 +0000 (20:26 +0000)]
Free 'scp->path' in case of libssh2 setup failure.
Daniel Stenberg [Mon, 13 Nov 2006 17:29:07 +0000 (17:29 +0000)]
Ron in bug #1595348 (curl.haxx.se/bug/view.cgi?id=1595348) pointed
out a stack overwrite (and the corresponding fix) on 64bit Windows when
dealing with HTTP chunked encoding.
Daniel Stenberg [Mon, 13 Nov 2006 17:26:43 +0000 (17:26 +0000)]
bug #1595348 by Ron pointed out this flaw and fix
Daniel Stenberg [Mon, 13 Nov 2006 13:48:55 +0000 (13:48 +0000)]
Tor Arntsen spotted this mistake
Daniel Stenberg [Sat, 11 Nov 2006 22:23:48 +0000 (22:23 +0000)]
we did 1.3.2 and are now on the 1.3.3 track!
Daniel Stenberg [Sat, 11 Nov 2006 22:05:33 +0000 (22:05 +0000)]
fix header to match actual proto
Daniel Stenberg [Sat, 11 Nov 2006 21:34:43 +0000 (21:34 +0000)]
cleaned up Curl_write() and the sub functions it uses for various protocols.
They all now return ssize_t to Curl_write().
Unfortunately, Curl_read() is in a sorrier state but it too would benefit from
a similar cleanup.
Daniel Stenberg [Thu, 9 Nov 2006 21:58:28 +0000 (21:58 +0000)]
Nir Soffer updated libcurl.framework.make: fix symlinks, should link to
Versions, not to ./Versions and indentation improvments
Daniel Stenberg [Thu, 9 Nov 2006 21:54:33 +0000 (21:54 +0000)]
Dmitriy Sergeyev found a SIGSEGV with his test04.c example posted on 7 Nov
2006. It turned out we wrongly assumed that the connection cache was present
when tearing down a connection.
Daniel Stenberg [Thu, 9 Nov 2006 21:36:18 +0000 (21:36 +0000)]
Ciprian Badescu found a SIGSEGV when doing multiple TFTP transfers using the
multi interface, but I could also repeat it doing multiple sequential ones
with the easy interface. Using Ciprian's test case, I could fix it.
Yang Tse [Thu, 9 Nov 2006 13:20:42 +0000 (13:20 +0000)]
Remove showing stderr log files unconditionally for tests 518 and 537.
Add failure checking for servers when fork()ed.
Use same code path in 'stopserver' when called with a single or multiple pids.
Daniel Stenberg [Wed, 8 Nov 2006 21:49:14 +0000 (21:49 +0000)]
Bradford Bruce reported that when setting CURLOPT_DEBUGFUNCTION without
CURLOPT_VERBOSE set to non-zero, you still got a few debug messages from the
SSL handshake. This is now stopped.
Daniel Stenberg [Wed, 8 Nov 2006 08:49:27 +0000 (08:49 +0000)]
ok stop using old and deprecated options
Daniel Stenberg [Tue, 7 Nov 2006 15:21:11 +0000 (15:21 +0000)]
add missing names
Daniel Stenberg [Tue, 7 Nov 2006 14:07:02 +0000 (14:07 +0000)]
Olaf fixed a leftover problem with the CONNECT fix of his that would leave a
wrong error message in the error message buffer.
Gisle Vanem [Tue, 7 Nov 2006 13:29:15 +0000 (13:29 +0000)]
Moved select_s() to Makefile.dj since select() is used in applications.
Gisle Vanem [Tue, 7 Nov 2006 13:20:01 +0000 (13:20 +0000)]
Update copyright year.
Yang Tse [Mon, 6 Nov 2006 18:28:34 +0000 (18:28 +0000)]
add TODO note
Yang Tse [Mon, 6 Nov 2006 18:27:25 +0000 (18:27 +0000)]
compiler warning fix
Yang Tse [Mon, 6 Nov 2006 18:26:36 +0000 (18:26 +0000)]
remove redundant check for Win32
Yang Tse [Mon, 6 Nov 2006 13:56:51 +0000 (13:56 +0000)]
avoid a couple of potential zero size memory allocations
Daniel Stenberg [Sun, 5 Nov 2006 23:11:22 +0000 (23:11 +0000)]
mention the areslib.dsp fix
Daniel Stenberg [Sun, 5 Nov 2006 23:11:07 +0000 (23:11 +0000)]
add the recent crowd of contributors
Daniel Stenberg [Sun, 5 Nov 2006 23:08:11 +0000 (23:08 +0000)]
Andreas Rieke fixed back the correct line endings!
Yang Tse [Sun, 5 Nov 2006 12:42:50 +0000 (12:42 +0000)]
Prevent multiple initialization of memdebug configuration variables.
This was possible on debug c-ares enabled builds when both CURL_MEMDEBUG
and CARES_MEMDEBUG environment variables were set. Leading to a file handle
leak even when both variables had the same value, and wierd test suite
results when different.
Gisle Vanem [Fri, 3 Nov 2006 15:52:21 +0000 (15:52 +0000)]
Ifdef around S_IRGRP and S_IROTH (meaningless on Win32).
Yang Tse [Fri, 3 Nov 2006 14:13:25 +0000 (14:13 +0000)]
add a couple more of debugging messages
Daniel Stenberg [Fri, 3 Nov 2006 13:45:52 +0000 (13:45 +0000)]
SCP support added
Daniel Stenberg [Fri, 3 Nov 2006 12:43:55 +0000 (12:43 +0000)]
Olaf Stueben provided a patch that I edited slightly. It fixes the notorious
KNOWN_BUGS #25, which happens when a proxy closes the connection when
libcurl has sent CONNECT, as part of an authentication negotiation. Starting
now, libcurl will re-connect accordingly and continue the authentication as
it should.
Daniel Stenberg [Fri, 3 Nov 2006 12:22:13 +0000 (12:22 +0000)]
initial SCP support is now added
Daniel Stenberg [Fri, 3 Nov 2006 10:56:37 +0000 (10:56 +0000)]
Update the information about what c-ares version that's required. 1.3.1 had
a fatal bug so we must require 1.3.2 to get flawless functionality with c-ares.
Daniel Stenberg [Fri, 3 Nov 2006 10:47:35 +0000 (10:47 +0000)]
stand clear for release 1.3.2
Daniel Stenberg [Fri, 3 Nov 2006 10:41:33 +0000 (10:41 +0000)]
Andreas Rieke added missing file and changed line endings
Yang Tse [Fri, 3 Nov 2006 10:05:21 +0000 (10:05 +0000)]
reduce max size of dinamically allocated arrays to minimize the nasty
behaviour some versions of IRIX exhibit of committing suicide on big
mallocs instead of just returning a friendly null pointer
Yang Tse [Fri, 3 Nov 2006 03:05:15 +0000 (03:05 +0000)]
fix missing '$' for var OPT_LIBSSH2
Yang Tse [Fri, 3 Nov 2006 02:36:32 +0000 (02:36 +0000)]
update copyright year
Yang Tse [Fri, 3 Nov 2006 01:57:25 +0000 (01:57 +0000)]
fix comments and renumber rlimit return codes
fix closing of fd's when limit is reached
Yang Tse [Fri, 3 Nov 2006 01:56:55 +0000 (01:56 +0000)]
fix comments and renumber rlimit return codes
Daniel Stenberg [Thu, 2 Nov 2006 22:11:38 +0000 (22:11 +0000)]
update the counter
Daniel Stenberg [Thu, 2 Nov 2006 22:10:18 +0000 (22:10 +0000)]
mention the new options
Daniel Stenberg [Thu, 2 Nov 2006 21:56:40 +0000 (21:56 +0000)]
James Housley brought support for SCP transfers
Yang Tse [Thu, 2 Nov 2006 20:56:40 +0000 (20:56 +0000)]
remove leftover comment
Yang Tse [Thu, 2 Nov 2006 20:50:18 +0000 (20:50 +0000)]
update and split test cases 518 and 537 into its own source code file
Yang Tse [Thu, 2 Nov 2006 15:47:24 +0000 (15:47 +0000)]
code cleanup
Yang Tse [Thu, 2 Nov 2006 03:45:07 +0000 (03:45 +0000)]
use our internal string functions and replace sprintf with snprintf
Yang Tse [Thu, 2 Nov 2006 01:21:28 +0000 (01:21 +0000)]
Update protocol verification end of lines
Yang Tse [Thu, 2 Nov 2006 00:34:21 +0000 (00:34 +0000)]
check symbol HAVE_UNISTD_H instead of UNISTD_H to include unistd.h
Yang Tse [Thu, 2 Nov 2006 00:33:43 +0000 (00:33 +0000)]
prototype for gethostname is in unistd.h
Yang Tse [Wed, 1 Nov 2006 18:33:50 +0000 (18:33 +0000)]
test 518 is all about testing libcurl functionality
when more than FD_SETSIZE file descriptors are open.
This means that if for any reason we are not able to
open more than FD_SETSIZE file descriptors then test
518 should not be run.
test 537 is all about testing libcurl functionality
when the system has nearly exhausted the number of
free file descriptors. Test 537 will try to run with
very few free file descriptors.
Gisle Vanem [Tue, 31 Oct 2006 20:45:17 +0000 (20:45 +0000)]
Updated dependency output.
Gisle Vanem [Tue, 31 Oct 2006 20:44:36 +0000 (20:44 +0000)]
Updated dependencies to not include config.h.
Gisle Vanem [Tue, 31 Oct 2006 18:01:07 +0000 (18:01 +0000)]
Removed unneeded stuff.
Gisle Vanem [Tue, 31 Oct 2006 17:54:51 +0000 (17:54 +0000)]
Added Watt-32 section to fix things for Watt32+Win32 targets.
Gisle Vanem [Tue, 31 Oct 2006 17:51:54 +0000 (17:51 +0000)]
Don't include "nameser.h" for Watt32. Use the normal BSD-socket headers.
Gisle Vanem [Tue, 31 Oct 2006 17:25:48 +0000 (17:25 +0000)]
Added definition of select() for Watt32.
Gisle Vanem [Tue, 31 Oct 2006 17:24:25 +0000 (17:24 +0000)]
Rewritten to use ../packages/DOS/common.dj.
Gisle Vanem [Tue, 31 Oct 2006 16:25:30 +0000 (16:25 +0000)]
Change 'FILETYPE' to ' VFT_APP'.
Yang Tse [Tue, 31 Oct 2006 01:30:42 +0000 (01:30 +0000)]
Show stderr log file for test 518 unconditionally.
In this way we'll be able to sort out problems that might
arise in the prechek phase of the 518 test.
Once that 518 has been verified this change will be undone.
Yang Tse [Tue, 31 Oct 2006 01:24:03 +0000 (01:24 +0000)]
Sync comment with code and add three messages more
Yang Tse [Mon, 30 Oct 2006 17:24:31 +0000 (17:24 +0000)]
Address some pitfalls in the rlimit() function check that were
preventing execution of this test on many platforms
Gisle Vanem [Mon, 30 Oct 2006 16:26:24 +0000 (16:26 +0000)]
Allow 'curl_*printf()' to be used in C++ programs.
Daniel Stenberg [Mon, 30 Oct 2006 09:03:34 +0000 (09:03 +0000)]
add contributors from the 7.16.0 release
Daniel Stenberg [Mon, 30 Oct 2006 08:52:12 +0000 (08:52 +0000)]
start working on 7.16.1
Daniel Stenberg [Sun, 29 Oct 2006 23:03:14 +0000 (23:03 +0000)]
7.16.0 material
Daniel Stenberg [Sun, 29 Oct 2006 23:00:52 +0000 (23:00 +0000)]
corrected how tests/memanalyze.pl is used
Yang Tse [Sun, 29 Oct 2006 21:19:23 +0000 (21:19 +0000)]
Compiler warning fix
Yang Tse [Sun, 29 Oct 2006 14:58:59 +0000 (14:58 +0000)]
Make more human readable and maintainable previous
compiler warning fix since it was Ok and actually
avoids the targeted compiler warning.
Daniel Stenberg [Sun, 29 Oct 2006 09:18:32 +0000 (09:18 +0000)]
updated to current status
Daniel Stenberg [Sun, 29 Oct 2006 09:11:44 +0000 (09:11 +0000)]
updated to reflect reality
Daniel Stenberg [Fri, 27 Oct 2006 21:07:08 +0000 (21:07 +0000)]
a small unification of the error text on failed server startups