Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-19 | I think this is the right fix for other non-OpenSSL libs, based on the NSS fix | Daniel Stenberg | |
from the other day. It is time to setup the internal SSL libs and treat them with a "handler" struct similar to how we deal with the protocols these days... | |||
2007-11-19 | Temporary change to help debugging string(s) returned by sshd -V | Yang Tse | |
when sshd is not being identified as an OpenSSH daemon | |||
2007-11-18 | removed now obsolete defines; | Gunter Knauf | |
updated external library versions to latest. | |||
2007-11-18 | Rob Crittenden fixed SSL connections with NSS done with the multi-interface | Daniel Stenberg | |
2007-11-18 | Add /opt/ssh/sbin and /opt/ssh/libexec to the sshd locations search list. | Yang Tse | |
Improve wording of a couple of debug messages. | |||
2007-11-17 | When unable to start test suite sshserver, log if OpenSSH has not been | Yang Tse | |
found or the OpenSSH version found | |||
2007-11-17 | Andres Garcia made the examples build fine on Windows (mingw + msys) when | Daniel Stenberg | |
the lib was built staticly. | |||
2007-11-17 | Add /usr/local/sbin and /usr/freeware/bin to the sshd locations search list | Yang Tse | |
2007-11-16 | Michal Marek made the test suite remember what test servers that fail to | Daniel Stenberg | |
start so that subsequent tries are simply skipped. | |||
2007-11-16 | Fix a double free. | Steinar H. Gunderson | |
2007-11-16 | Fix unsigned integral math check in add_buffer_send() | Yang Tse | |
2007-11-15 | Ates Goral identified a problem in http.c:add_buffer_send() when a debug | Daniel Stenberg | |
callback was used, as it could wrongly pass on a bad size for the outgoing HTTP header. The bad size would be a very large value as it was a wrapped size_t content. This happened when the whole HTTP request failed to get sent in one single send. http://curl.haxx.se/mail/lib-2007-11/0165.html | |||
2007-11-15 | removed unnecessary check from add_buffer_send() that only was made within | Daniel Stenberg | |
#ifdef CURL_DOES_CONVERSIONS anyway! I turned it into a DEBUGASSERT() instead. | |||
2007-11-15 | Michal Marek fixed the test suite to better deal with the case when the HTTP | Daniel Stenberg | |
ipv6 server can't run. | |||
2007-11-15 | Rearranged code and changed Curl_readwrite_init() and Curl_pre_readwrite() into | Daniel Stenberg | |
do_init() and do_complete() which now are called first and last in the DO function. It simplified the flow in multi.c and the functions got more sensible names! | |||
2007-11-15 | Needed now that in6_addr is referenced in ares.h | Yang Tse | |
2007-11-15 | Replace isupper with our uppercase macro version | Yang Tse | |
2007-11-15 | Replace isgraph with our uppercase macro version | Yang Tse | |
2007-11-15 | Make the Transfer() function return earlier without doing any initializations | Daniel Stenberg | |
for the cases where there's nothing to do in here, like for SFTP directory listings that already is complete when this function gets called. The init stuff clears byte counters which isn't really desired. | |||
2007-11-15 | When looking up in DNS and then in the hosts file, return the error code ↵ | Steinar H. Gunderson | |
from DNS if both fail, instead of returning the error code from the hosts file, as today. Patch from the Google tree. | |||
2007-11-15 | Return TTL data from ares_parse_{a,aaaa}_reply, if the user is so inclined. ↵ | Steinar H. Gunderson | |
Patch from the Google tree. | |||
2007-11-14 | use the existing variable instead | Daniel Stenberg | |
2007-11-14 | Fix how TFTP connections are treated when re-used, if the SessionHandle has | Daniel Stenberg | |
been used for other protocols in between. I found this when test 2004 started to fail for me! | |||
2007-11-14 | Fix a variable potential wrapping in add_buffer() when using absolutely | Yang Tse | |
huge send buffer sizes | |||
2007-11-12 | Fixed a remaining problem with doing SFTP directory listings on a re-used | Daniel Stenberg | |
persistent connection. Mentioned by Immanuel Gregoire on the mailing list. | |||
2007-11-12 | comment language | Daniel Stenberg | |
2007-11-12 | Bug report #1830637 (http://curl.haxx.se/bug/view.cgi?id=1830637), which was | Daniel Stenberg | |
forwarded from the Gentoo bug tracker by Daniel Black and was originally submitted by Robin Johnson, pointed out that libcurl would do bad memory references when it failed and bailed out before the handler thing was setup. My fix is not done like the provided patch does it, but instead I make sure that there's never any chance for a NULL pointer in that struct member. | |||
2007-11-12 | oops, fixed build when CURL_LIBSSH2_DEBUG is defined | Daniel Stenberg | |
2007-11-11 | new ruby binding, curl-multi version 0.1 | Daniel Stenberg | |
2007-11-10 | Some versions of winsock2.h have pollfd struct and constants | Yang Tse | |
2007-11-08 | Fix compiler warning: integral size mismatch in argument | Yang Tse | |
2007-11-08 | Define WIN32 when build target is Win32 API. | Yang Tse | |
This also defines it for WinCE even though it is a subset of WIN32. | |||
2007-11-08 | Fix compiler warning: may be used uninitialized | Yang Tse | |
2007-11-08 | Fix comment | Yang Tse | |
2007-11-08 | spell! | Daniel Stenberg | |
2007-11-08 | Bug report #1823487 (http://curl.haxx.se/bug/view.cgi?id=1823487) pointed | Daniel Stenberg | |
out that SFTP requests didn't use persistent connections. Neither did SCP ones. I gave the SSH code a good beating and now both SCP and SFTP should use persistent connections fine. I also did a bunch for indent changes as well as a bug fix for the "keyboard interactive" auth. | |||
2007-11-08 | The only libraries actually needed for sample programs adig and | Yang Tse | |
ahost are ws2_32.lib and advapi32.lib | |||
2007-11-07 | MSVC versions prior to VS2005 do not complain about portable C functions | Yang Tse | |
2007-11-07 | if () => if() | Daniel Stenberg | |
while () => while() and some other minor re-indentings | |||
2007-11-07 | Improved telnet support by drastically reducing the number of write | Dan Fandrich | |
callbacks needed to pass a buffer to the user. Instead one per byte it is now as little as one per segment. | |||
2007-11-07 | Add a call to curl_global_cleanup to show how to do a proper shutdown. | Dan Fandrich | |
2007-11-06 | Bug report #1824894 (http://curl.haxx.se/bug/view.cgi?id=1824894) pointed | Yang Tse | |
out a problem in curl.h when building C++ apps with MSVC. To fix it, the inclusion of header files in curl.h is moved outside of the C++ extern "C" linkage block. | |||
2007-11-06 | Added prototype for _strtoi64(). | Gisle Vanem | |
2007-11-06 | Constified from arguments. | Gisle Vanem | |
2007-11-05 | Sort the directory listing because the server doesn't always do it. | Dan Fandrich | |
2007-11-05 | Added some keywords | Dan Fandrich | |
2007-11-05 | tclcurl and a mirror recount when bad ones have been cut out | Daniel Stenberg | |
2007-11-05 | Andres Garcia made it build and run on windows | Daniel Stenberg | |
2007-11-05 | removed space after if and while before the parenthesis for better source code | Daniel Stenberg | |
consistency | |||
2007-11-05 | I check the code right now and while() and if() are in majority over while () | Daniel Stenberg | |
and if () so the rule is from now on => no space before the parenthesis. |