- Nov 22, 2007
-
-
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 17, 2007
-
-
Daniel Stenberg authored
the lib was built staticly.
-
- Nov 16, 2007
-
-
Daniel Stenberg authored
start so that subsequent tries are simply skipped.
-
- 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
-
Daniel Stenberg authored
ipv6 server can't run.
-
- Nov 14, 2007
-
-
Yang Tse authored
huge send buffer sizes
-
- Nov 12, 2007
-
-
Daniel Stenberg authored
persistent connection. Mentioned by Immanuel Gregoire on the mailing list.
-
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 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 07, 2007
-
-
Dan Fandrich authored
callbacks needed to pass a buffer to the user. Instead one per byte it is now as little as one per segment.
-
- 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 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.
-
Dan Fandrich authored
-
Dan Fandrich authored
protocols listed in curl --version
-
- Oct 31, 2007
-
-
Dan Fandrich authored
always, except when --without-libssh2 was given
-
- Oct 30, 2007
-
-
Dan Fandrich authored
Moved Curl_file_connect into the protocol handler struct.
-
- Oct 29, 2007
-
-
Dan Fandrich authored
failed one using the multi interface
-
Daniel Stenberg authored
tracker (https://bugzilla.redhat.com/show_bug.cgi?id=316191), I now made curl-config --features and --protocols show the correct output when built with NSS.
-
Daniel Stenberg authored
-
- Oct 25, 2007
-
-
Dan Fandrich authored
-
Daniel Stenberg authored
Previously it would fail if the ca bundle wasn't present, even if the code ignored the verification results.
-
Patrick Monnerat authored
Tests 35, 544 545 added: binary data POSTs.
-
Daniel Stenberg authored
lib is built shared with libtool.
-
Daniel Stenberg authored
-
- Oct 24, 2007
-
-
Dan Fandrich authored
Added test cases 2002 and 2003 (the latter disabled for now)
-
Dan Fandrich authored
same easy handle Fixed the filecheck: make target to work outside the source tree
-
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).
-
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 15, 2007
-
-
Patrick Monnerat authored
CURLOPT_COPYPOSTFIELDS option added for dynamic. Fix some OS400 features.
-
- Oct 12, 2007
-
-
Patrick Monnerat authored
in the connectdata structure by a single handler table ptr.
-
- Oct 11, 2007
-
-
Dan Fandrich authored
Added support for skipping tests based on key words.
-
- Oct 09, 2007
-
-
Daniel Stenberg authored
man page.
-
- Oct 07, 2007
-
-
Daniel Stenberg authored
a response that was larger than 16KB is now improved slightly so that now the restriction at 16KB is for the headers only and it should be a rare situation where the response-headers exceed 16KB. Thus, I consider #47 fixed and the header limitation is now known as known bug #48.
-
- Oct 05, 2007
-
-
Daniel Stenberg authored
string: "FLUSH". Using that will cause libcurl to flush its cookies to the CURLOPT_COOKIEJAR file.
-