summaryrefslogtreecommitdiff
path: root/CHANGES
Commit message (Collapse)AuthorAgeFilesLines
* multi interface: missed storing connection timeDaniel Stenberg2010-05-071-0/+12
| | | | | | | | | | | | | | | Dirk Manske reported a regression. When connecting with the multi interface, there were situations where libcurl wouldn't store connect time correctly as it used to (and is documented to) do. Using his fine sample program we could repeat it, and I wrote up test case 573 using that code. The problem does not easily show itself using the local test suite though. The fix, also as suggested by Dirk, is a bit on the ugly side as it adds yet another call to Curl_verboseconnect() and setting the TIMER_CONNECT time. That situation is subject for some closer inspection in the future.
* changelogs: split the I/O handlingDaniel Stenberg2010-05-071-0/+13
|
* changelog: PolarSSLDaniel Stenberg2010-05-051-0/+4
|
* changelog: mention Ben Greear's telnet workDaniel Stenberg2010-04-291-0/+15
|
* SSH: init and cleanup libssh2 in global_init/cleanupDaniel Stenberg2010-04-261-0/+5
| | | | The necessary libssh2 functions require libssh2 1.2.5 or later.
* new configure option --enable-threaded-resolverDaniel Stenberg2010-04-251-0/+8
|
* nss: fix SSL handshake timeout underflowKamil Dudka2010-04-241-0/+3
|
* changelog: added the --proto and -proto-redir optionsDaniel Stenberg2010-04-241-0/+4
|
* test536: do not fail with threaded DNS resolverKamil Dudka2010-04-241-0/+4
| | | | Also tweaked comments in certain examples using curl_multi_fdset().
* curl: -O crash on windowsDaniel Stenberg2010-04-211-0/+4
| | | | | The -O option caused curl to crash on windows and DOS due to the tool writing out of boundary memory.
* replaced wsock32.lib usage with ws2_32.lib in MSVC makefilesRuslan Gazizov2010-04-201-0/+5
|
* changelog: -J/--remote-header-name strips CRLFDaniel Stenberg2010-04-191-0/+4
|
* changelog: GnuTLS: SSL handshake phase is non-blockingDaniel Stenberg2010-04-161-0/+2
|
* changelog: GnuTLS fix, no reverse loopkups and fixed GSS detectionDaniel Stenberg2010-04-161-0/+14
|
* changelog: prevent needless reverse name lookupsDaniel Stenberg2010-04-151-0/+7
|
* 7.20.1: 14 April 2010curl-7_20_1Daniel Stenberg2010-04-141-0/+2
|
* FTP quote commands prefixed with '*' now can fail without abortingDaniel Stenberg2010-04-091-0/+5
| | | | | | Prefixing the FTP quote commands with an asterisk really only worked for the postquote actions. This is now fixed and test case 227 has been extended to verify.
* nss: handle client certificate related errorsKamil Dudka2010-04-061-0/+3
|
* refactorize interface of Curl_ssl_recv/Curl_ssl_sendKamil Dudka2010-04-041-0/+2
|
* eliminate a race condition in Curl_resolv_timeout()Kamil Dudka2010-04-041-0/+3
|
* fix SFTP download hangDaniel Stenberg2010-04-011-0/+6
| | | | | | | Matt Wixson found and fixed a bug in the SCP/SFTP area where the code treated a 0 return code from libssh2 to be the same as EAGAIN while in reality it isn't. The problem caused a hang in SFTP transfers from a MessageWay server.
* Ben's POP3 changeDaniel Stenberg2010-03-281-0/+9
|
* allow user+password in the URL for all protocolsBen Greear2010-03-271-0/+6
| | | | | | | | Ben Greear brought a patch that from now on allows all protocols to specify name and user within the URL, in the same manner HTTP and FTP have been allowed to in the past - although far from all of the libcurl supported protocols actually have that feature in their URL definition spec.
* changelogged: smoother rate limitingDaniel Stenberg2010-03-261-0/+5
|
* fix: timeout after last data chunk was handledBob Richmond2010-03-241-0/+11
| | | | | | | | | | | | | | Bob Richmond: There's an annoying situation where libcurl will read new HTTP response data from a socket, then check if it's a timeout if one is set. If the last packet received constitutes the end of the response body, libcurl still treats it as a timeout condition and reports a message like: "Operation timed out after 3000 milliseconds with 876 out of 876 bytes received" It should only a timeout if the timer lapsed and we DIDN'T receive the end of the response body yet.
* RTSP GET_PARAMETER fixDaniel Stenberg2010-03-241-0/+4
| | | | | | Christopher Conroy fixed a problem with RTSP and GET_PARAMETER reported to us by Massimo Callegari. There's a new test case 572 that verifies this now.
* The 'ares' subtree has been removed from the source repositoryDaniel Stenberg2010-03-241-0/+7
|
* mark connection as connectedDaniel Stenberg2010-03-231-0/+7
| | | | | | | | | | 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)
* chunked-encoding with Content-Length: header problemDaniel Stenberg2010-03-231-0/+5
| | | | | | | | 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.
* delayed easy handle kill caused double Curl_close() callDaniel Stenberg2010-03-231-0/+15
| | | | | | | | | | | | | | | | | 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.
* Thomas Lopatic fixed the alarm()-based DNS timeoutDaniel Stenberg2010-03-221-0/+13
|
* Fix insufficient initialization in Curl_clone_ssl_config()douglas steinwand2010-03-221-0/+4
| | | | which could have caused a double free when reusing curl handle.
* various changes of CVS to gitDaniel Stenberg2010-03-221-0/+2
|
* Ben Greear's two fixes explainedDaniel Stenberg2010-03-211-0/+4
|
* - Improved Curl_read() to not ignore the error returned from Curl_ssl_recv().Kamil Dudka2010-03-191-0/+3
|
* - Constantine Sapuntzakis brought a patch:Daniel Stenberg2010-03-151-0/+10
| | | | | | | | | 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.
* - Ben Greear brought a patch that fixed the rate limiting logic for TFTP whenDaniel Stenberg2010-03-061-0/+4
| | | | the easy interface was used.
* Daniel Johnson provided fixes for building with the clang compilerDaniel Stenberg2010-03-051-0/+3
|
* Constantine Sapuntzakis detected and fixed a double free in builds doneYang Tse2010-03-051-0/+5
| | | | | with threaded resolver enabled (Windows default configuration) that would get triggered when a curl handle is closed while doing DNS resolution.
* - [Daniel Johnson] I've been trying to build libcurl with clang on Darwin andDaniel Stenberg2010-03-021-0/+14
| | | | | | | | | | | | | | | ran into some issues with the GSSAPI tests in configure.ac. The tests first try to determine the include dirs and libs and set CPPFLAGS and LIBS accordingly. It then checks for the headers and finally sets LIBS a second time, causing the libs to be included twice. The first setting of LIBS seems redundant and should be left out, since the first part is otherwise just about finding headers. My second issue is that 'krb5-config --libs gssapi' on Darwin is less than useless and returns junk that, while it happens to work with gcc, causes clang to choke. For example, --libs returns $CFLAGS along with the libs, which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5 -lresolv"' on Darwin is sufficient.
* - Based on patch provided by Jacob Moshenko, the transfer logic now properlyDaniel Stenberg2010-03-021-0/+5
| | | | | | 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)
* - Andrei Benea filed bug report #2956698 and pointed out that theDaniel Stenberg2010-03-021-0/+6
| | | | | | | 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
* - Markus Duft pointed out in bug #2961796 that even though Interix has aDaniel Stenberg2010-03-021-0/+6
| | | | | | | poll() function it doesn't quite work the way we want it so we must disable it, and he also provided a patch for it. http://curl.haxx.se/bug/view.cgi?id=2961796
* - Made the pingpong timeout code properly deal with the response timeout ANDDaniel Stenberg2010-03-021-0/+10
| | | | | | | | | | 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
* - Ben Greear provided an update for TFTP that fixes upload.Daniel Stenberg2010-03-011-0/+2
|
* - Wesley Miaw reported bug #2958179 which identified a case of looping duringDaniel Stenberg2010-03-011-0/+7
| | | | | | | 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
* - Pat Ray in bug #2958474 pointed out an off-by-one case when receiving aDaniel Stenberg2010-02-261-0/+6
| | | | | | chunked-encoding trailer. http://curl.haxx.se/bug/view.cgi?id=2958474
* Fixed a couple of out of memory leaks and a segfault in the IMAP code.Dan Fandrich2010-02-261-1/+1
|
* Fixed a couple of out of memory leaks and a segfault in the SMTP code.Dan Fandrich2010-02-251-0/+3
|
* Fixed bug report #2958074 indicatingYang Tse2010-02-251-0/+6
| | | | | | (http://curl.haxx.se/bug/view.cgi?id=2958074) that curl on Windows with option --trace-time did not use local time when timestamping trace lines. This could also happen on other systems depending on time souurce.