Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-18 | Added the list of sftp quote commands. | Dan Fandrich | |
2007-07-18 | As has been pointed out, err_msg should not be freed here. The actual | James Housley | |
issue is in libssh2 and not freeing a dynamic error message during cleanup. | |||
2007-07-18 | Use 512 bit keys to reduce the time taken to generate them. This shouldn't | Dan Fandrich | |
really reduce security since in the common case of a daily automated build the keys are only used for a single test run lasting a few minutes before being deleted. | |||
2007-07-17 | Fixed test cases 613 and 614 by improving the log postprocessor to handle | Dan Fandrich | |
a new directory listing format that newer libssh2's can provide. This is probably NOT sufficient to handle all directory listing formats that server's can provide and should be revisited. | |||
2007-07-17 | Jofell Gallardo posted a libcurl log using FTP that exposed a bug which made | Daniel Stenberg | |
a control connection that was deemed "dead" to yet be re-used in a following request. We must make sure the connection gets closed on this situation. | |||
2007-07-16 | make it do all three requests on the same connection | Daniel Stenberg | |
2007-07-16 | Fixed some more simple compile warnings in the examples. | Dan Fandrich | |
2007-07-16 | 45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names. | Daniel Stenberg | |
getaddrinfo() sorts the response list which effectively kills how libcurl deals with round-robin DNS entries. All details: http://curl.haxx.se/mail/lib-2007-07/0168.html initial suggested function to use for randomizing the response: http://curl.haxx.se/mail/lib-2007-07/0178.html | |||
2007-07-15 | convert test case 540 to use a custom Host: header as well | Daniel Stenberg | |
2007-07-15 | let's just export the whole argc + argv pair globally so that each test tool | Daniel Stenberg | |
can take advantage of it however they see fit! | |||
2007-07-15 | make users use the latest OpenSSL and Zlib libraries; | Gunter Knauf | |
added hint to compile with SSPI with MSVC6 without PSDK. | |||
2007-07-14 | added another SEE ALSO | Daniel Stenberg | |
2007-07-14 | Added test case 540 and lib540.c, the 'proxyauth.c' test app posted by Shmulik | Daniel Stenberg | |
Regev on the libcurl mailing list on 10 Jul 2007, converted to a test case. | |||
2007-07-14 | add support for arg3 as the third argument... | Daniel Stenberg | |
2007-07-14 | add some better logging when HTTP server start fails, and make the failure | Daniel Stenberg | |
really hard if the test server can't be resolved (like for ::1 ipv6) | |||
2007-07-14 | for now unless we do better fixed LIBSSH2_APINO compares to use long constants. | Gunter Knauf | |
2007-07-14 | Brad House's fix to hish a win32 compiler warning | Daniel Stenberg | |
2007-07-14 | added Vlad's entire description of his valgrind fix | Daniel Stenberg | |
2007-07-14 | Vlad Dinulescu fixed two outstanding valgrind reports | Daniel Stenberg | |
2007-07-13 | The examples don't need access to curl internal source files. | Dan Fandrich | |
2007-07-13 | Colin Hogben filed bug report #1750274 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1750274) and submitted a patch for the case where libcurl did a connect attempt to a non-listening port and didn't provide a human readable error string back. | |||
2007-07-13 | Daniel Cater added the mentioning of CURL_DISABLE_TFTP | Daniel Stenberg | |
2007-07-13 | Daniel Cater: libcurl-errors needs updating to reflect a couple of deprecated | Daniel Stenberg | |
error codes | |||
2007-07-13 | Daniel Cater made libcurl build with CURL_NO_OLDIES defined (which doesn't | Daniel Stenberg | |
define the symbols for backwards source compatibility) | |||
2007-07-13 | Daniel Cater made the vc8-generating line use double-quotes to run fine on | Daniel Stenberg | |
windows | |||
2007-07-12 | Made the krb5 code build with Heimdal's GSSAPI lib | Daniel Stenberg | |
2007-07-12 | Fixed some compile warnings and errors and improved portability in the | Dan Fandrich | |
examples. Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers any longer. | |||
2007-07-12 | make it compile fine | Daniel Stenberg | |
2007-07-12 | fix include path | Daniel Stenberg | |
2007-07-12 | Compile most of the example apps in docs/examples when doing a 'make check'. | Dan Fandrich | |
2007-07-12 | Shmulik Regev found an (albeit rare) case where the proxy CONNECT operation | Daniel Stenberg | |
could in fact get stuck in an endless loop. | |||
2007-07-12 | start the retry delay at 10 ms, double it for every failed attempt which makes | Daniel Stenberg | |
it 10 seconds delay after 11 attempts | |||
2007-07-12 | the timeout was probably too short with max = 1 sec, so lets test with 5 sec. | Gunter Knauf | |
2007-07-12 | added nwos.c so that it gets distributed with releases and tarballs. | Gunter Knauf | |
2007-07-12 | added time loop to sockfilt.c in order to wait for SO_REUSEADDR; | Gunter Knauf | |
added go_sleep() to util.c. | |||
2007-07-11 | Updated to match curl.h | Marty Kuhrt | |
2007-07-11 | Made CURLOPT_SSL_VERIFYHOST set to 1 acts as described in the documentation: | Daniel Stenberg | |
fail to connect if there is no Common Name field found in the remote cert. We should deprecate the support for this set to 1 anyway soon, since the feature is pointless and most likely never really used by anyone. | |||
2007-07-11 | removed now obsolete NETDB_DEFINE_CONTEXT macro calls. | Gunter Knauf | |
2007-07-11 | updated makefile to compile nwos.c. | Gunter Knauf | |
2007-07-11 | added NetWare-own file to provide some init functions (for now only CLIB); | Gunter Knauf | |
added call to netware_init() in curl_global_init() to make sure it gets called before any library functions get used. | |||
2007-07-11 | Added the first libcurl version to which the SSH options were added. | Dan Fandrich | |
2007-07-11 | added netdb.h for NetWare CLIB since gethostname() is defined there. | Gunter Knauf | |
2007-07-11 | fixed endif comment. | Gunter Knauf | |
2007-07-11 | fixed endif comment. | Gunter Knauf | |
2007-07-10 | Added a code coverage section using gcc and gcov. | Dan Fandrich | |
2007-07-10 | Shmulik Regev: | Daniel Stenberg | |
The tiny patch below fixes a bug (that I introduced :) which happens when negotiating authentication with a proxy (probably with web servers as well) that uses chunked transfer encoding for the 407 error pages. In this case the ''ignorebody'' flag was ignored (no pun intended). | |||
2007-07-10 | Giancarlo Formicuccia reported and fixed a problem with a closed connection | Daniel Stenberg | |
to a proxy during CONNECT auth negotiation. | |||
2007-07-10 | Force the time zone to GMT in the cookie tests in case the user is | Dan Fandrich | |
using one of the so-called 'right' time zones that take into account leap seconds, which causes the tests to fail (as reported by Daniel Black in bug report #1745964). | |||
2007-07-10 | The previous commits changed the error code | James Housley | |
2007-07-10 | * Finish moving sftp:// into a state machine so it won't block in multi mode | James Housley | |
* Move scp:// into a state machine so it won't block in multi mode * When available use the full directory entry from the sftp:// server |