History log of /curl/RELEASE-NOTES (Results 1276 – 1300 of 2430)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 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.


# 7842704e 01-Mar-2010 Daniel Stenberg

SSL, not SSH, SSL


# 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


# 6a8aa246 25-Feb-2010 Yang Tse

Fixed bug report #2958074 indicating
(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

Fixed bug report #2958074 indicating
(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.

show more ...


# a4a60afa 20-Feb-2010 Daniel Stenberg

- Fixed the SMTP compliance by making sure RCPT TO addresses are specified
properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now
get angle bracket wrapping automatica

- Fixed the SMTP compliance by making sure RCPT TO addresses are specified
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.

show more ...


# a434cb43 20-Feb-2010 Daniel Stenberg

- I made the SMTP code expect a 250 response back from the server after the
full DATA has been sent, and I modified the test SMTP server to also send
that response. As usual, the DONE ope

- I made the SMTP code expect a 250 response back from the server after the
full DATA has been sent, and I modified the test SMTP server to also send
that response. As usual, the DONE operation that is made after a completed
transfer is still not doable in a non-blocking way so this waiting for 250
is unfortunately made blockingly.

show more ...


# b4ff6d30 13-Feb-2010 Daniel Stenberg

- Martin Hager reported and fixed a problem with a missing quote in libcurl.m4

(http://curl.haxx.se/bug/view.cgi?id=2951319)


# c703d01a 13-Feb-2010 Daniel Stenberg

- Tom Donovan fixed the CURL_FORMAT_* defines when building with cmake.


# 97581436 12-Feb-2010 Daniel Stenberg

- Jack Zhang reported a problem with SMTP: we wrongly used multiple addresses
in the same RCPT TO line, when they should be sent in separate single
commands. I updated test case 802 to ve

- Jack Zhang reported a problem with SMTP: we wrongly used multiple addresses
in the same RCPT TO line, when they should be sent in separate single
commands. I updated test case 802 to verify this.

- I also fixed a bad use of my_setopt_str() of CURLOPT_MAIL_RCPT in the curl
tool which made it try to output it as string for the --libcurl feature
which could lead to crashes.

show more ...


# c3b87d1b 11-Feb-2010 Yang Tse

mention last changes


# 77066c6e 09-Feb-2010 Daniel Stenberg

start working on 7.20.1


Revision tags: curl-7_20_0
# 06ae8ca5 09-Feb-2010 Daniel Stenberg

- When downloading compressed content over HTTP and the app as asked libcurl
to automatically uncompress it with the CURLOPT_ENCODING option, libcurl
could wrongly provide the callback wi

- When downloading compressed content over HTTP and the app as asked libcurl
to automatically uncompress it with the CURLOPT_ENCODING option, libcurl
could wrongly provide the callback with more data than what the maximum
documented amount. An application could thus get tricked into badness if the
maximum limit was trusted to be enforced by libcurl itself (as it is
documented).

This is further detailed and explained in the libcurl security advisory
20100209 at

http://curl.haxx.se/docs/adv_20100209.html

show more ...


# 49ba75af 02-Feb-2010 Yang Tse

- Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
symbol will not be available when building with CURL_NO_OLDIES defined. Use
of CURL_FORMAT_CURL_OFF_T is pre

- Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
symbol will not be available when building with CURL_NO_OLDIES defined. Use
of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0

show more ...


# 55f1e787 01-Feb-2010 Daniel Stenberg

We introduce a loop in lib/multi.c around all calls to multi_runsingle() and
simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added
benefit that this goes in line with my lo

We introduce a loop in lib/multi.c around all calls to multi_runsingle() and
simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added
benefit that this goes in line with my long-term wishes to get rid of the
CURLM_CALL_MULTI_PERFORM all together from the public API.

show more ...


# 3cb76e5e 27-Jan-2010 Yang Tse

mention asynchronous DNS lookups enhancements


# c82a1f95 26-Jan-2010 Daniel Stenberg

- Mike Crowe made libcurl return CURLE_COULDNT_RESOLVE_PROXY when it is the
proxy that cannot be resolved when using c-ares. This matches the behaviour
when not using c-ares.


# 94f33457 23-Jan-2010 Bjorn Stenberg

Mention -J change


# bc4582b6 21-Jan-2010 Daniel Stenberg

Chris Conroy brought support for RTSP transfers, and with it comes 8(!) new
libcurl options for controlling what to get and how to receive posssibly
interleaved RTP data. Initial commit.


# 877dad1e 19-Jan-2010 Daniel Stenberg

- As was pointed out on the http-state mailing list, the order of cookies in a
HTTP Cookie: header _needs_ to be sorted on the path length in the cases
where two cookies using the same na

- As was pointed out on the http-state mailing list, the order of cookies in a
HTTP Cookie: header _needs_ to be sorted on the path length in the cases
where two cookies using the same name are set more than once using
(overlapping) paths. Realizing this, identically named cookies must be
sorted correctly. But detecting only identically named cookies and take care
of them individually is harder than just to blindly and unconditionally sort
all cookies based on their path lengths. All major browsers also already do
this, so this makes our behavior one step closer to them in the cookie area.

Test case 8 was the only one that broke due to this change and I updated it
accordingly.

show more ...


1...<<51525354555657585960>>...98