- May 07, 2009
-
-
Daniel Stenberg authored
well. See change 28 Apr 2009.
-
Yang Tse authored
Additionally some identation fixes.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2723236) identifying a problem with libcurl's TFTP code and its lack of dealing with the OACK packet.
-
- May 05, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
one and store the current one, as it makes the code less complex and I'm not even sure I can check for the same session id using memcmp() like that.
-
- May 04, 2009
-
-
Daniel Stenberg authored
corresponding fix in the GnuTLS code: make sure to store the new session id in case the re-used one is rejected.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2786255) with a patch, identifying how libcurl did not deal with SSL session ids properly if the server rejected a re-use of one. Starting now, it will forget the rejected one and remember the new. This change was for OpenSSL only, it is likely that other SSL lib code needs similar fixes.
-
Yang Tse authored
David McCreedy's "transfer.c fixes for CURL_DO_LINEEND_CONV and non-ASCII platform HTTP requests" patch
-
- May 02, 2009
-
-
Yang Tse authored
-
- May 01, 2009
- Apr 30, 2009
- Apr 29, 2009
-
-
Yang Tse authored
-
http://curl.haxx.se/bug/view.cgi?id=2723219Daniel Stenberg authored
I've now made TFTP "connections" not being kept for re-use within libcurl. TFTP is UDP-based so the benefit was really low (if even existing) to begin with so instead of tracking down to fix this problem we instead removed the re-use. I also enabled test case 1099 that I wrote a few days ago to verify that this change fixes the reported problem.
-
- Apr 28, 2009
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2783090) pointing out that on windows we need to grow the SO_SNDBUF buffer somewhat to get really good upload speeds. http://support.microsoft.com/kb/823764 has the details. Friends confirmed that simply adding 32 to CURL_MAX_WRITE_SIZE is enough.
-
Yang Tse authored
-
http://curl.haxx.se/bug/view.cgi?id=2709004Daniel Stenberg authored
Chen pointed out how curl couldn't upload with resume when reading from a pipe. This ended up with the introduction of a new return code for the CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but that libcurl may try to resolve the situation anyway. In our case this means libcurl will attempt to instead read that much data from the stream instead of seeking and that way curl can now upload with resume when data is read from a stream!
-
- Apr 27, 2009
-
-
Daniel Stenberg authored
-
- Apr 26, 2009
-
-
http://curl.haxx.se/bug/view.cgi?id=2779733Daniel Stenberg authored
Wegener pointed out that CURLINFO_APPCONNECT_TIME didn't work with the multi interface and provided a patch that fixed the problem!
-
- Apr 25, 2009
-
-
Yang Tse authored
Previous workaround proved useful, and finally did not trigger any warning!
-
- Apr 24, 2009
-
-
Daniel Stenberg authored
-
Yang Tse authored
Previous workaround proved useful, but triggered the following warning: warning #556: a value of type "volatile Curl_addrinfo *" cannot be assigned to an entity of type "Curl_addrinfo *"
-
- Apr 23, 2009
-
-
Yang Tse authored
The #pragma optimize("", off) attempt did not fix the problem and SIGSEGV's in Curl_freeaddrinfo() were back.
-
Dan Fandrich authored
-
- Apr 22, 2009
-
-
Yang Tse authored
Previous 'volatile' variables workaround proved useful, but it triggered the following warning: warning #167: argument of type "volatile Curl_addrinfo *" is incompatible with parameter of type "void *"
-
- Apr 21, 2009
- Apr 20, 2009
-
-
Daniel Stenberg authored
how it occurs (http://curl.haxx.se/mail/lib-2009-04/0289.html). The conclusion was that if an error is detected and Curl_done() is called for the connection, ftp_done() could at times return another error code that then would take precedence and that new code confused existing logic that works for the first error code (CURLE_SEND_ERROR) only.
-
- Apr 19, 2009
-
-
Yang Tse authored
-
- Apr 18, 2009
-
-
Gisle Vanem authored
-
Gisle Vanem authored
-
- Apr 17, 2009
-
-
Daniel Stenberg authored
proxy. libcurl would then wrongly close the connection after each request. In his case it had the weird side-effect that it killed NTLM auth for the proxy causing an inifinite loop! I added test case 1098 to verify this fix. The test case does however not properly verify that the transfers are done persistently - as I couldn't think of a clever way to achieve it right now - but you need to read the stderr output after a test run to see that it truly did the right thing.
-
Yang Tse authored
-
- Apr 16, 2009
-
-
Yang Tse authored
-
- Apr 15, 2009
-
-
Guenter Knauf authored
-
- Apr 14, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
-