- Dec 05, 2007
-
-
Daniel Stenberg authored
callback) over a proxy when NTLM is used as auth with the proxy. The bug also concerned Digest and was limited to using callback only. Spacen worked with us to provide a useful patch. I added the test case 547 and 548 to verify two variations of POST over proxy with NTLM.
-
- Dec 03, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
fix even if kind of implied by the new option
-
- Dec 02, 2007
-
-
Daniel Stenberg authored
the appending of the "type=" thing on FTP URLs when they are passed to a HTTP proxy. Some proxies just don't like that appending (which is done unconditionally in 7.17.1), and some proxies treat binary/ascii transfers better with the appending done!
-
- Nov 29, 2007
-
-
Daniel Stenberg authored
-
- Nov 22, 2007
-
-
Yang Tse authored
which don't have one.
-
Daniel Stenberg authored
and documentation.
-
- Nov 20, 2007
-
-
Daniel Stenberg authored
the same state struct as the host auth, so both could never be used at the same time! I fixed it (without being able to check) to use two separate structs to allow authentication using Negotiate on host and proxy simultanouesly.
-
Daniel Stenberg authored
data sent in a post.
-
- Nov 18, 2007
-
-
Daniel Stenberg authored
-
- Nov 15, 2007
-
-
Daniel Stenberg authored
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
-
- Nov 14, 2007
-
-
Yang Tse authored
huge send buffer sizes
-
- Nov 12, 2007
-
-
http://curl.haxx.se/bug/view.cgi?id=1830637Daniel Stenberg authored
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.
-
- Nov 11, 2007
-
-
Daniel Stenberg authored
-
- 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
-