Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-24 | changes to silent compiler warnings with 64bit systems. | Gunter Knauf | |
2009-07-24 | changes to silent compiler warnings with 64bit systems. | Gunter Knauf | |
2009-07-23 | changes to silent compiler warnings with 64bit systems. | Gunter Knauf | |
2009-07-23 | fixed brace error. | Gunter Knauf | |
2009-07-23 | changes to silent compiler warnings with 64bit systems. | Gunter Knauf | |
2009-07-23 | blocked sshkeycallback() with HAVE_LIBSSH2_KNOWNHOST_API to avoid compiler ↵ | Gunter Knauf | |
warnings. | |||
2009-07-22 | 242 - SSH knownhost support (powered by libssh2 1.2) | Daniel Stenberg | |
Committed now. Not yet thoroughly degbugged etc, but at least the funtionality is now present. | |||
2009-07-22 | - Added CURLOPT_SSH_KNOWNHOSTS, CURLOPT_SSH_KEYFUNCTION, CURLOPT_SSH_KEYDATA. | Daniel Stenberg | |
They introduce known_host support for SSH keys to libcurl. See docs for details. | |||
2009-07-22 | don't set READDATA since it isn't used and only confuses readers | Daniel Stenberg | |
2009-07-22 | - David Binderman found a memory and fd leak in lib/gtls.c:load_file() | Michal Marek | |
(https://bugzilla.novell.com/523919). When looking at the code, I found that also the ptr pointer can leak. | |||
2009-07-21 | 66. When using telnet, the time limitation options don't work. | Daniel Stenberg | |
http://curl.haxx.se/bug/view.cgi?id=2818950 | |||
2009-07-20 | - Claes Jakobsson improved the support for client certificates handling | Kamil Dudka | |
in NSS-powered libcurl. Now the client certificates can be selected automatically by a NSS built-in hook. Additionally pre-login to all PKCS11 slots is no more performed. It used to cause problems with HW tokens. - Fixed reference counting for NSS client certificates. Now the PEM reader module should be always properly unloaded on Curl_nss_cleanup(). If the unload fails though, libcurl will try to reuse the already loaded instance. | |||
2009-07-17 | trial to fix a win64 compiler warning. | Gunter Knauf | |
2009-07-16 | added a cast to silent compiler warning with 64bit systems. | Gunter Knauf | |
2009-07-16 | test if adding ../lib to includes can fix the current break ... | Gunter Knauf | |
2009-07-15 | Added nonblock.c to the non-automake makefiles (note that the dependencies | Dan Fandrich | |
in the Watcom makefiles aren't quite correct). | |||
2009-07-15 | ENH: fix build with ssl | Bill Hoffman | |
2009-07-15 | ENH: move dashboard location | Bill Hoffman | |
2009-07-15 | BUG: curl did not build with cmake with VS 2005 for two reasons, ws2tcpip.h ↵ | Bill Hoffman | |
requires winsock2.h to be included before it with that compiler, and wldap32 is not available with the default install of the compiler, so disable ldap support if that is not found | |||
2009-07-15 | - Changed the description of CURLINFO_OS_ERRNO to make it clear that the | Michal Marek | |
errno is not reset on success. | |||
2009-07-15 | fixed typo. | Gunter Knauf | |
2009-07-14 | ENH: add optional support for c-ares | Bill Hoffman | |
2009-07-14 | renamed generated config.h to curl_config.h in order to avoid clashes when ↵ | Gunter Knauf | |
libcurl is used with other projects which also have a config.h (missing bits) | |||
2009-07-14 | updated openssl version to latest; removed obsolete link to openssl patch ↵ | Gunter Knauf | |
since its now in the openssl releases. | |||
2009-07-14 | ENH: move config.h.cmake to curl_config.h.cmake so it builds again | Bill Hoffman | |
2009-07-14 | renamed generated config.h to ares_config.h in order to avoid clashes when ↵ | Gunter Knauf | |
libcurl is used with other projects which also have a config.h. | |||
2009-07-14 | ENH: add nonblock.c to build for CMake | Bill Hoffman | |
2009-07-14 | ENH: do not report if zlib is not found as it still works | Bill Hoffman | |
2009-07-14 | renamed generated config.h to curl_config.h in order to avoid clashes when ↵ | Gunter Knauf | |
libcurl is used with other projects which also have a config.h. | |||
2009-07-14 | renamed generated config.h to curl_config.h in order to avoid clashes when ↵ | Gunter Knauf | |
libcurl is used with other projects which also have a config.h. | |||
2009-07-13 | added PKG_CONFIG_PATH to output to better verify if it gets properly set ↵ | Gunter Knauf | |
with cross compiles. | |||
2009-07-11 | silence a compiler warning | Daniel Stenberg | |
2009-07-09 | add these new files to CVS as well | Daniel Stenberg | |
2009-07-09 | 241 - expose Curl_nonblock as curlx_nonblock | Daniel Stenberg | |
done | |||
2009-07-09 | - Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses for | Daniel Stenberg | |
setting a file descriptor non-blocking. Used by the functionality Eric himself brough on June 15th. | |||
2009-07-09 | 240 - GnuTLS configure fix to find older installations | Daniel Stenberg | |
done | |||
2009-07-09 | bring back the libgnutls-config use for checking for GnuTLS if pkg-config | Daniel Stenberg | |
doesn't work, to better fine older gnutls installs | |||
2009-07-09 | two more pending issues | Daniel Stenberg | |
2009-07-08 | 245 - HTTP version getinfo | Daniel Stenberg | |
2009-07-08 | updated with the actions I want to have done before the 7.19.6 release | Daniel Stenberg | |
2009-07-08 | Markus Koetter's man page updates for the FTPPORT ranges | Daniel Stenberg | |
2009-07-08 | - Constantine Sapuntzakis posted bug report #2813123 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2813123) and an a patch that fixes the problem: Url A is accessed using auth. Url A redirects to Url B (on a different server0. Url B reuses a persistent connection. Url B has auth, even though it's on a different server. Note: if Url B does not reuse a persistent connection, auth is not sent. | |||
2009-07-04 | added INET_ADDRSTRLEN define in case system headers dont provide. | Gunter Knauf | |
2009-07-04 | removed NIFLAGS which is no longer used; added NI_MAXHOST since its missing ↵ | Gunter Knauf | |
with some platforms. | |||
2009-07-04 | Markus Koetter provided a patch to avoid getnameinfo() usage which broke a ↵ | Gunter Knauf | |
couple of both IPv4 and IPv6 autobuilds. | |||
2009-06-30 | silly typo, pointed out by Fabian Keil | Daniel Stenberg | |
2009-06-30 | Tor Arntsen pointed out a missing #ifdef for IPv6, and I changed another one | Daniel Stenberg | |
to use the "standard" ENABLE_IPV6 one. Also, if port number cannot be figured out to connect to after a name resolve (due to it not being IPv4 or IPv6), that particular address will now simply be skipped. | |||
2009-06-29 | my CURLINFO_CERTINFO fix | Daniel Stenberg | |
2009-06-29 | - Markus Koetter made CURLOPT_FTPPORT (and curl's -P/--ftpport) support a port | Daniel Stenberg | |
range if given colon-separated after the host name/address part. Like "192.168.0.1:2000-10000" | |||
2009-06-29 | - Modified the separators used for CURLOPT_CERTINFO in multi-part outputs. I | Daniel Stenberg | |
don't know how they got wrong in the first place, but using this output format makes it possible to quite easily separate the string into an array of multiple items. |