- 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
#ifdef CURL_DOES_CONVERSIONS anyway! I turned it into a DEBUGASSERT() instead.
-
Daniel Stenberg authored
ipv6 server can't run.
-
Daniel Stenberg authored
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!
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
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.
-
Steinar H. Gunderson authored
When looking up in DNS and then in the hosts file, return the error code from DNS if both fail, instead of returning the error code from the hosts file, as today. Patch from the Google tree.
-
Steinar H. Gunderson authored
Return TTL data from ares_parse_{a,aaaa}_reply, if the user is so inclined. Patch from the Google tree.
-
- Nov 14, 2007
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
been used for other protocols in between. I found this when test 2004 started to fail for me!
-
Yang Tse authored
huge send buffer sizes
-
- Nov 12, 2007
-
-
Daniel Stenberg authored
persistent connection. Mentioned by Immanuel Gregoire on the mailing list.
-
Daniel Stenberg authored
-
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.
-
Daniel Stenberg authored
-
- Nov 11, 2007
-
-
Daniel Stenberg authored
-
- Nov 10, 2007
-
-
Yang Tse authored
-
- Nov 08, 2007
-
-
Yang Tse authored
-
Yang Tse authored
This also defines it for WinCE even though it is a subset of WIN32.
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
-
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.
-
Yang Tse authored
ahost are ws2_32.lib and advapi32.lib
-
- Nov 07, 2007
-
-
Yang Tse authored
-
Daniel Stenberg authored
while () => while() and some other minor re-indentings
-
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.
-
Dan Fandrich authored
-
- 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.
-
Gisle Vanem authored
-
Gisle Vanem authored
-
- Nov 05, 2007
-
-
Dan Fandrich authored
-
Dan Fandrich authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
consistency
-
Daniel Stenberg authored
and if () so the rule is from now on => no space before the parenthesis.
-
Daniel Stenberg authored
connectdata struct. This will in theory enable us to do persistent connections with SCP+SFTP, but currently the state machine always (and wrongly) cleanup everything in the 'done' action instead of in 'disconnect'. Also did a bunch of indent fixes, if () => if() and a few other source cleanups like added comments etc.
-