Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-15 | Store now this file in CVS with unix line endings. | Yang Tse | |
maketgz already converts this file to DOS style with an awk filter. | |||
2010-01-15 | Declaration of $sshdlog is done in sshhelp.pm | Yang Tse | |
2010-01-15 | Start using the centralized pidfile and logfile name generation | Yang Tse | |
subroutines for ssh and socks test suite servers. | |||
2010-01-15 | Added the new protocol source files to the non-autoconf build files | Dan Fandrich | |
2010-01-14 | Squeeze slack time when killing more than one server from | Yang Tse | |
the <killserver> section of test harness definition files. | |||
2010-01-14 | - Suppressed side effect of OpenSSL configure checks, which prevented NSS from | Kamil Dudka | |
being properly detected under certain circumstances. It had been caused by strange behavior of pkg-config when handling PKG_CONFIG_LIBDIR. pkg-config distinguishes among empty and non-existent environment variable in that case. | |||
2010-01-13 | Give the test a bit mote time to run so it passes on slow machines | Yang Tse | |
2010-01-13 | remove trailing spaces from configure.ac | Kamil Dudka | |
2010-01-12 | Added test case #1112 which does an FTPS download with strict timeout | Yang Tse | |
and slow data transfer in a similar way as test case #1086 does for FTP. This also exercises <killserver> section for the FTPS server. | |||
2010-01-12 | Make runtests.pl actually support any (valid) server specification | Yang Tse | |
for the <killserver> section of test harness definition files. | |||
2010-01-12 | Fix tftp and sftp supported protocols in servername_str() | Yang Tse | |
2010-01-12 | Make sockfilter kill messages look alike server ones | Yang Tse | |
2010-01-12 | Adjust vor VPATH builds | Yang Tse | |
2010-01-11 | - Gil Weber reported a peculiar flaw with the multi interface when doing SFTP | Daniel Stenberg | |
transfers: curl_multi_fdset() would return -1 and not set and file descriptors several times during a transfer of a single file. It turned out to be due to two different flaws now fixed. Gil's excellent recipe helped me nail this. | |||
2010-01-11 | ssh_statemach_act() is now modified to loop over the switch() to perform as | Daniel Stenberg | |
much as possible in one go, as long as it doesn't block and hasn't reached the end of the state machine. This avoids spurious -1 returns from curl_multi_fdset() simply because previously it would return from this function without anything in EWOUDLBLOCK and thus basically it wasn't actually waiting for anything!! | |||
2010-01-11 | After the TCP connect is confirmed in CURLM_STATE_WAITCONNECT and it changes | Daniel Stenberg | |
state, we return CURLM_CALL_MULTI_PERFORM unconditionally then so that we can act faster like in the case the protocol-specific connect doesn't block on anything and we can just persue on the next action immediately. It also then avoids a case where curl_multi_fdset() would return -1. | |||
2010-01-11 | progress callback called repeatedly during slow connects | Daniel Stenberg | |
2010-01-11 | - Made sure that the progress callback is repeatedly called at a regular | Daniel Stenberg | |
interval even during very slow connects. | |||
2010-01-11 | - The tests/runtests.pl script now checks to see if the test case that runs is | Daniel Stenberg | |
present in the tests/data/Makefile.am and outputs a notice message on the screen if not. Each test file has to be included in that Makefile.am to get included in release archives and forgetting to add files there is a common mistake. This is an attempt to make it harder to forget. | |||
2010-01-11 | secureserver.pl is now the test harness script used for SSL/TLS. | Yang Tse | |
2010-01-11 | secureserver.pl is now the test harness script used for SSL/TLS. | Yang Tse | |
Start using the centralized pidfile and logfile name generation subroutines for https and ftps test suite servers. | |||
2010-01-10 | Update error message to include port number | Yang Tse | |
2010-01-10 | Previous commit adjustments | Yang Tse | |
2010-01-09 | Start using the centralized pidfile and logfile name generation | Yang Tse | |
subroutines for ftp, pop3, imap and smtp test suite servers. | |||
2010-01-09 | struct Curl_sh_entry's 'inuse' member was no longer used and is now removed | Daniel Stenberg | |
2010-01-08 | - Johan van Selst found and fixed a OpenSSL session ref count leak: | Daniel Stenberg | |
ossl_connect_step3() increments an SSL session handle reference counter on each call. When sessions are re-used this reference counter may be incremented many times, but it will be decremented only once when done (by Curl_ossl_session_free()); and the internal OpenSSL data will not be freed if this reference count remains positive. When a session is re-used the reference counter should be corrected by explicitly calling SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid introducing a memory leak. (http://curl.haxx.se/bug/view.cgi?id=2926284) | |||
2010-01-08 | Start using the centralized pidfile and logfile name generation | Yang Tse | |
subroutines for http and tftp test suite servers. | |||
2010-01-08 | Remove extra line feed | Yang Tse | |
2010-01-08 | Use '_stunnel.log' ending also for https test server log | Yang Tse | |
2010-01-08 | sws and tftpd command line option naming adjustments | Yang Tse | |
2010-01-07 | removed a parameter from the Curl_http_readwrite_headers() prototype to remove | Daniel Stenberg | |
the need for the struct forward declaration from http.h which caused problems with gcc 2.96 and quite frankly the parameter wasn't necessary anyway | |||
2010-01-07 | List fragment tests in Makefile.am and better provide better names | Claes Jakobsson | |
2010-01-07 | removed Curl_http_header_append() prototype as it isn't used anymore, the | Daniel Stenberg | |
function was moved to http.c and was made static and renamed | |||
2010-01-06 | - Make sure the progress callback is called repeatedly even during very slow | Daniel Stenberg | |
name resolves when c-ares is used for resolving. | |||
2010-01-06 | Disable tests 802 and 803 | Yang Tse | |
2010-01-06 | Prevent detection of stdint.h on IRIX systems, even when available. | Yang Tse | |
IRIX MIPSpro 7.4 C++ compiler does not tolerate inclusion of stdint.h | |||
2010-01-06 | Julien Chaffraix fixed so that the fragment part in an URL is not sent to ↵ | Claes Jakobsson | |
the server anymore | |||
2010-01-04 | use the modern name for this option | Daniel Stenberg | |
2010-01-03 | - Julien Chaffraix eliminated a duplicated initialization in singlesocket(). | Kamil Dudka | |
2010-01-02 | - Make curl support --ssl and --ssl-reqd instead of the previous FTP-specific | Daniel Stenberg | |
versions --ftp-ssl and --ftp-ssl-reqd as these options are now used to control SSL/TLS for IMAP, POP3 and SMTP as well in addition to FTP. The old option names are still working but the new ones are the prefered ones (listed and documented). | |||
2010-01-01 | stop at once if the EOB marker shows up, even if something else might get | Daniel Stenberg | |
sent afterwards | |||
2010-01-01 | update copyright year since we are in 2010 now | Daniel Stenberg | |
2010-01-01 | added CURLOPT_FTP_USE_PRET | Daniel Stenberg | |
2010-01-01 | - Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. This | Daniel Stenberg | |
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail. | |||
2009-12-31 | added descriptions for CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT | Daniel Stenberg | |
2009-12-31 | --mail-rcpt and --mail-from are starting to settle and work like this... | Daniel Stenberg | |
2009-12-31 | turned CURLOPT_MAIL_RCPT into a curl_slist list instead to support multiple | Daniel Stenberg | |
receivers, and made the command line tool thus support the option specified many times | |||
2009-12-31 | Use '_stunnel.log' file name ending for stunneled server logs | Yang Tse | |
2009-12-31 | VMS adjustments by Steven M. Schweda | Yang Tse | |
2009-12-31 | Subs for refactoring purposes | Yang Tse | |