- Nov 08, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1823487Daniel Stenberg authored
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.
-
- Nov 06, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1824894Yang Tse authored
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.
-
- Nov 05, 2007
-
-
Daniel Stenberg authored
-
- Nov 01, 2007
-
-
Daniel Stenberg authored
happened when a user had a home dir as an empty string. curl would then do free() on a wrong area.
-
Dan Fandrich authored
due to a missing header file.
-
- Oct 31, 2007
-
-
Dan Fandrich authored
always, except when --without-libssh2 was given
-
Daniel Stenberg authored
all the numericals at the top phrased "shorter" and I cut out the "number of releases since the very beginning" since that's just the number curl releases + 26 and not a very interesting number anyway.
-
- Oct 29, 2007
-
-
Daniel Stenberg authored
with NSS
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Oct 28, 2007
-
-
http://curl.wetzlmayr.at/Daniel Stenberg authored
-
- Oct 25, 2007
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Previously it would fail if the ca bundle wasn't present, even if the code ignored the verification results.
-
Daniel Stenberg authored
lib is built shared with libtool.
-
Daniel Stenberg authored
-
- Oct 24, 2007
-
-
Daniel Stenberg authored
building with VC8 to get the "manifest" embedded to make fine stand-alone binaries. The maketgz and the src/Makefile.vc6 files were adjusted accordingly.
-
- Oct 23, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1812190Daniel Stenberg authored
that libcurl tried to re-use connections a bit too much when using non-SSL protocols tunneled over a HTTP proxy.
-
- Oct 22, 2007
-
-
Daniel Stenberg authored
https://bugzilla.novell.com/show_bug.cgi?id=332917 about a HTTP redirect to FTP that caused memory havoc. His work together with my efforts created two fixes: #1 - FTP::file was moved to struct ftp_conn, because is has to be dealt with at connection cleanup, at which time the struct HandleData could be used by another connection. Also, the unused char *urlpath member is removed from struct FTP. #2 - provide a Curl_reset_reqproto() function that frees data->reqdata.proto.* on connection setup if needed (that is if the SessionHandle was used by a different connection).
-
Daniel Stenberg authored
-
http://curl.haxx.se/bug/view.cgi?id=1815530Daniel Stenberg authored
that specifying a proxy with a trailing slash didn't work (unless it also contained a port number).
-
- Oct 05, 2007
-
-
Daniel Stenberg authored
string: "FLUSH". Using that will cause libcurl to flush its cookies to the CURLOPT_COOKIEJAR file.
-
- Oct 04, 2007
-
-
Daniel Stenberg authored
This happened because the tftp code always uncondionally did a bind() without caring if one already had been done and then it failed. I wrote a test case (1009) to verify this, but it is a bit error-prone since it will have to pick a fixed local port number and since the tests are run on so many different hosts in different situations I add it in disabled state.
-
- Oct 03, 2007
-
-
Yang Tse authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
CURLOPT_OPENSOCKETDATA to set a callback that allows an application to replace the socket() call used by libcurl. It basically allows the app to change address, protocol or whatever of the socket. (I also did some whitespace indent/cleanups in lib/url.c which kind of hides some of these changes, sorry for mixing those in.)
-
Daniel Stenberg authored
CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 and the curl tool --hostpubmd5. They both make the SCP or SFTP connection verify the remote host's md5 checksum of the public key before doing a connect, to reduce the risk of a man-in-the-middle attack.
-
- Oct 02, 2007
-
-
Daniel Stenberg authored
Added test case 1008 to verify. Note that #47 is still there.
-
- Sep 30, 2007
-
-
Daniel Stenberg authored
function do wrong on all input bytes that are >= 0x80 (decimal 128) due to a signed / unsigned mistake in the code. I fixed it and added test case 543 to verify.
-
- Sep 29, 2007
-
-
Daniel Stenberg authored
previous proto struct was kept.
-
- Sep 28, 2007
-
-
Daniel Stenberg authored
notifier callback(s).
-
- Sep 26, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
curl_easy_setopt() that alters how libcurl functions when following redirects. It makes libcurl obey the RFC2616 when a 301 response is received after a non-GET request is made. Default libcurl behaviour is to change method to GET in the subsequent request (like it does for response code 302 - because that's what many/most browsers do), but with this CURLOPT_POST301 option enabled it will do what the spec says and do the next request using the same method again. I.e keep POST after 301. The curl tool got this option as --post301 Test case 1011 and 1012 were added to verify.
-
Daniel Stenberg authored
CURLOPT_NOBODY enabled but not CURLOPT_HEADER, libcurl wouldn't do TYPE before it does SIZE which makes it less useful. I walked over the code and made it do this properly, and added test case 542 to verify it.
-
- Sep 24, 2007
-
-
Daniel Stenberg authored
URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and also test 1010 was added.
-
- Sep 21, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
the --proxy-negotiate command line option to allow a user to explicitly select it.
-
- Sep 20, 2007
-
-
Daniel Stenberg authored
-
- Sep 18, 2007
-
-
Daniel Stenberg authored
o It looks for the NSS database first in the environment variable SSL_DIR, then in /etc/pki/nssdb, then it initializes with no database if neither of those exist. o If the NSS PKCS#11 libnspsem.so driver is available then PEM files may be loaded, including the ca-bundle. If it is not available then only certificates already in the NSS database are used. o Tries to detect whether a file or nickname is being passed in so the right thing is done o Added a bit of code to make the output more like the OpenSSL module, including displaying the certificate information when connecting in verbose mode o Improved handling of certificate errors (expired, untrusted, etc) The libnsspem.so PKCS#11 module is currently only available in Fedora 8/rawhide. Work will be done soon to upstream it. The NSS module will work with or without it, all that changes is the source of the certificates and keys.
-
Daniel Stenberg authored
key was specified and there was no HOME environment variable, and then it didn't continue to try the other auth methods. Now it will instead try to get the files id_dsa.pub and id_dsa from the current directory if none of the two conditions were met.
-