- Mar 23, 2010
-
-
Daniel Stenberg authored
Kenny To filed the bug report #2963679 with patch to fix a problem he experienced with doing multi interface HTTP POST over a proxy using PROXYTUNNEL. He found a case where it would connect fine but bits.tcpconnect was not set correct so libcurl didn't work properly. (http://curl.haxx.se/bug/view.cgi?id=2963679)
-
Daniel Stenberg authored
Akos Pasztory filed debian bug report #572276 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572276 mentioning a problem with a resource that returns chunked-encoded _and_ with a Content-Length and libcurl failed to properly ignore the latter information.
-
Daniel Stenberg authored
Hauke Duden provided an example program that made the multi interface crash. His example simply used the multi interface and did first one FTP transfer and after completion it used a second easy handle and did another FTP transfer on the same FTP server. This triggered a bug in the "delayed easy handle kill" system that curl uses: when an FTP connection is left alive it must keep an easy handle around internally - only for the purpose of having an easy handle when it later disconnects it. The code assumed that when the easy handle was removed and an internal reference was made, that version could be killed later on when a new easy handle came using the same connection. This was wrong as Hauke's example showed that the removed handle wasn't killed for real until later. This caused a double close attempt => segfault.
-
- Mar 22, 2010
-
-
Thomas Lopatic authored
Looking at the code of Curl_resolv_timeout() in hostip.c, I think that in case of a timeout, the signal handler for SIGALRM never gets removed. I think that in my case it gets executed at some point later on when execution has long left Curl_resolv_timeout() or even the cURL library. The code that is jumped to with siglongjmp() simply sets the error message to "name lookup timed out" and then returns with CURLRESOLV_ERROR. I guess that instead of simply returning without cleaning up, the code should have a goto that jumps to the spot right after the call to Curl_resolv().
-
douglas steinwand authored
which could have caused a double free when reusing curl handle.
-
- Mar 21, 2010
-
-
Ben Greear authored
Error codes were not properly returned to the main curl code (and on to apps using libcurl). tftp was crapping out when tsize == 0 on upload, but I see no reason to fail to upload just because the remote file is zero-length. Ignore tsize option on upload.
-
- Mar 20, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Mar 19, 2010
-
-
Kamil Dudka authored
-
- Mar 18, 2010
-
-
Daniel Stenberg authored
-
Yang Tse authored
another shot at the ftp_init() icc 9.1 optimizer issue
-
- Mar 15, 2010
-
-
Daniel Stenberg authored
The problem mentioned on Dec 10 2009 (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed. Partially because an easy handle can be associated with many connections in the cache (e.g. if there is a redirect during the lifetime of the easy handle). The previous patch only cleaned up the first one. The new fix now removes the easy handle from all connections, not just the first one.
-
- Mar 11, 2010
-
-
Yang Tse authored
fix compiler warning
-
Dan Fandrich authored
-
- Mar 06, 2010
-
-
Daniel Stenberg authored
the easy interface was used.
-
Daniel Stenberg authored
expressions
-
- Mar 05, 2010
-
-
Yang Tse authored
Constantine Sapuntzakis detected and fixed a double free in builds done with threaded resolver enabled (Windows default configuration) that would get triggered when a curl handle is closed while doing DNS resolution.
-
- Mar 02, 2010
-
-
Daniel Stenberg authored
makes sure that when using sub-second timeouts, there's no final bad 1000ms wait. Previously, a sub-second timeout would often make the elapsed time end up the time rounded up to the nearest second (e.g. 1s for 200ms timeout)
-
Daniel Stenberg authored
CURLOPT_CERTINFO feature leaked memory due to a missing OpenSSL function call. He provided the patch to fix it too. http://curl.haxx.se/bug/view.cgi?id=2956698
-
Daniel Stenberg authored
the global timeout if set. Also, as was reported in the bug report #2956437 by Ryan Chan, the time stamp to use as basis for the per command timeout was not set properly in the DONE phase for FTP (and not for SMTP) so I fixed that just now. This was a regression compared to 7.19.7 due to the conversion of FTP code over to the generic pingpong concepts. http://curl.haxx.se/bug/view.cgi?id=2956437
-
Daniel Stenberg authored
-
- Mar 01, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
OpenSSL based SSL handshaking even though the multi interface was used and there was no good reason for it. http://curl.haxx.se/bug/view.cgi?id=2958179
-
- Feb 26, 2010
-
-
Daniel Stenberg authored
chunked-encoding trailer. http://curl.haxx.se/bug/view.cgi?id=2958474
-
Dan Fandrich authored
-
Yang Tse authored
Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems
-
Yang Tse authored
fix compiler warning
-
Yang Tse authored
fix compiler warning
-
- Feb 25, 2010
-
-
Yang Tse authored
fix compiler warning
-
Dan Fandrich authored
-
- Feb 24, 2010
-
-
Yang Tse authored
fix compiler warning
-
- Feb 23, 2010
-
-
Yang Tse authored
fix compiler warning
-
- Feb 22, 2010
-
-
Yang Tse authored
fix socket data type and logging format in debug tracking socket functions
-
Yang Tse authored
convert Curl_ultous() and Curl_ultouc() functions to curlx_ultous() and curlx_ultouc(), exposing them through curlx.h to allow proper code reuse later in our test harness.
-
Patrick Monnerat authored
-
Patrick Monnerat authored
- SMTP falls back to RFC821 HELO when EHLO fails (and SSL is not required). - Use of true local host name (i.e.: via gethostname()) when available, as default argument to SMTP HELO/EHLO. - Test case 804 for HELO fallback.
-
Yang Tse authored
add header inclusion
-
Yang Tse authored
fix compiler warning
-
- Feb 21, 2010
-
-
Yang Tse authored
fix compiler warning
-
- Feb 20, 2010
-
-
Daniel Stenberg authored
properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now get angle bracket wrapping automatically by libcurl unless the recipient starts with an angle bracket as then the app is assumed to deal with that properly on its own.
-