688699a0 | 27-Nov-2006 |
Daniel Stenberg |
no need to access it with conn->data since data is already a local variable holding the conn->data value |
090f5a9a | 25-Nov-2006 |
Daniel Stenberg |
added the new test 282 |
da58d03f | 25-Nov-2006 |
Daniel Stenberg |
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 connect
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.
show more ...
|
9ea3831c | 25-Nov-2006 |
Daniel Stenberg |
James Housley fixed SCP downloading by setting the maxdownload. |
a46f55b9 | 25-Nov-2006 |
Yang Tse |
Make sure RETSIGTYPE is properly defined |
a634f644 | 24-Nov-2006 |
Daniel Stenberg |
James Housley did lots of work and introduced SFTP downloads. |
bcd8a3b2 | 24-Nov-2006 |
Yang Tse |
Define HAVE_SIGNAL_H, HAVE_SIG_ATOMIC_T and HAVE_SIG_ATOMIC_T_VOLATILE as appropriate for platforms that don't have autotools support |
04d5d189 | 22-Nov-2006 |
Daniel Stenberg |
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. |
abd2775a | 22-Nov-2006 |
Daniel Stenberg |
Install ares_dns.h too |
73226415 | 22-Nov-2006 |
Yang Tse |
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
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.
show more ...
|
ab160ef4 | 21-Nov-2006 |
Daniel Stenberg |
new french mirror |
268fe093 | 20-Nov-2006 |
Yang Tse |
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 |
7a557e98 | 20-Nov-2006 |
Yang Tse |
Revert runtests.pl back to revision 1.212 This is done to back out changes done from revisions 1.213 to 1.217 |
f1a55cbe | 20-Nov-2006 |
Yang Tse |
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 |
1e35d95d | 20-Nov-2006 |
Yang Tse |
Add some message logging |
d8387b41 | 20-Nov-2006 |
Yang Tse |
stop slaves before stopping servers |
adea16a2 | 20-Nov-2006 |
Yang Tse |
Revert to KILL test servers until all test servers have proper TERM and INT signal handlers implemented. |
7f2d5cab | 19-Nov-2006 |
Daniel Stenberg |
log the sleep, like when done in test 190 |
c6ff612f | 19-Nov-2006 |
Daniel Stenberg |
Frank Teo provided an updated, mostly docs changed |
8db353e1 | 19-Nov-2006 |
Yang Tse |
Avoid passing child pid and test server pid, using the running servers hash, and adjust message arguments accordingly. |
e6978117 | 19-Nov-2006 |
Yang Tse |
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
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.
show more ...
|
5dcb0550 | 18-Nov-2006 |
Daniel Stenberg |
new ruby binding, new tclcurl release |
0b5e1a9b | 18-Nov-2006 |
Yang Tse |
Avoid keeping dupe pids When forked pid and test server pid is the same one. |
2e17a974 | 18-Nov-2006 |
Yang Tse |
Fix warning "Use of uninitialized value in ...". If the list has only one item avoid sort subroutine. |
74ddbd8a | 17-Nov-2006 |
Yang Tse |
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* se
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.
show more ...
|