History log of /curl/CHANGES (Results 51 – 75 of 1910)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 0eda142e 27-Mar-2010 Ben Greear

allow user+password in the URL for all protocols

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

allow user+password in the URL for all protocols

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.

show more ...


# 2b0c2ac4 26-Mar-2010 Daniel Stenberg

changelogged: smoother rate limiting


# 05632d5d 24-Mar-2010 Bob Richmond

fix: timeout after last data chunk was handled

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

fix: timeout after last data chunk was handled

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.

show more ...


# 9828b926 24-Mar-2010 Daniel Stenberg

RTSP GET_PARAMETER fix

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.


# dd0c31ce 24-Mar-2010 Daniel Stenberg

The 'ares' subtree has been removed from the source repository


# 4b351d01 23-Mar-2010 Daniel Stenberg

mark connection as connected

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

mark connection as connected

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)

show more ...


# 7fd32ce7 23-Mar-2010 Daniel Stenberg

chunked-encoding with Content-Length: header problem

Akos Pasztory filed debian bug report #572276
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572276
mentioning a problem with a

chunked-encoding with Content-Length: header problem

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.

show more ...


# 2a94293e 23-Mar-2010 Daniel Stenberg

delayed easy handle kill caused double Curl_close() call

Hauke Duden provided an example program that made the multi
interface crash. His example simply used the multi interface and

delayed easy handle kill caused double Curl_close() call

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.

show more ...


# d4cd5411 22-Mar-2010 Daniel Stenberg

Thomas Lopatic fixed the alarm()-based DNS timeout


# abcea311 22-Mar-2010 douglas steinwand

Fix insufficient initialization in Curl_clone_ssl_config()

which could have caused a double free when reusing curl handle.


# 1609685f 21-Mar-2010 Daniel Stenberg

various changes of CVS to git


# 3d3900f0 21-Mar-2010 Daniel Stenberg

Ben Greear's two fixes explained


# 19ca0c0f 19-Mar-2010 Kamil Dudka

- Improved Curl_read() to not ignore the error returned from Curl_ssl_recv().


# 733f794c 15-Mar-2010 Daniel Stenberg

- Constantine Sapuntzakis brought a patch:

The problem mentioned on Dec 10 2009
(http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed.
Partially because an eas

- Constantine Sapuntzakis brought a patch:

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.

show more ...


# e262aaae 06-Mar-2010 Daniel Stenberg

- Ben Greear brought a patch that fixed the rate limiting logic for TFTP when
the easy interface was used.


# f5d8c0be 05-Mar-2010 Daniel Stenberg

Daniel Johnson provided fixes for building with the clang compiler


# f4551a96 05-Mar-2010 Yang Tse

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 wh

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.

show more ...


# 013d5a72 02-Mar-2010 Daniel Stenberg

- [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and
ran into some issues with the GSSAPI tests in configure.ac. The tests first
try to determine the include dirs

- [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and
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.

show more ...


# 9b2cce23 02-Mar-2010 Daniel Stenberg

- Based on patch provided by Jacob Moshenko, the transfer logic now properly
makes sure that when using sub-second timeouts, there's no final bad 1000ms
wait. Previously, a sub-second tim

- Based on patch provided by Jacob Moshenko, the transfer logic now properly
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)

show more ...


# 6bf071df 02-Mar-2010 Daniel Stenberg

- Andrei Benea filed bug report #2956698 and pointed out that the
CURLOPT_CERTINFO feature leaked memory due to a missing OpenSSL function
call. He provided the patch to fix it too.

- Andrei Benea filed bug report #2956698 and pointed out that the
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

show more ...


# 7c028a83 02-Mar-2010 Daniel Stenberg

- Markus Duft pointed out in bug #2961796 that even though Interix has a
poll() function it doesn't quite work the way we want it so we must disable
it, and he also provided a patch for i

- Markus Duft pointed out in bug #2961796 that even though Interix has a
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

show more ...


# 13ac2938 02-Mar-2010 Daniel Stenberg

- Made the pingpong timeout code properly deal with the response timeout AND
the global timeout if set. Also, as was reported in the bug report #2956437
by Ryan Chan, the time stamp to us

- Made the pingpong timeout code properly deal with the response timeout AND
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

show more ...


# 53aa6b21 01-Mar-2010 Daniel Stenberg

- Ben Greear provided an update for TFTP that fixes upload.


# 496002ea 01-Mar-2010 Daniel Stenberg

- Wesley Miaw reported bug #2958179 which identified a case of looping during
OpenSSL based SSL handshaking even though the multi interface was used and
there was no good reason for it.

- Wesley Miaw reported bug #2958179 which identified a case of looping during
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

show more ...


# 03a57308 26-Feb-2010 Daniel Stenberg

- Pat Ray in bug #2958474 pointed out an off-by-one case when receiving a
chunked-encoding trailer.

http://curl.haxx.se/bug/view.cgi?id=2958474


12345678910>>...77