History log of /curl/RELEASE-NOTES (Results 1976 – 2000 of 2431)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: curl-7_16_0
# 719bec26 29-Oct-2006 Daniel Stenberg

7.16.0 material


# cde5e35d 25-Oct-2006 Daniel Stenberg

Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the
case when 401 or 407 are returned, *IF* no auth credentials have been given.
The CURLOPT_FAILONERROR option is not p

Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the
case when 401 or 407 are returned, *IF* no auth credentials have been given.
The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401
and 407 cases when auth credentials is given, but we've now covered this
somewhat more.

You might get some amounts of headers transferred before this situation is
detected, like for when a "100-continue" is received as a response to a
POST/PUT and a 401 or 407 is received immediately afterwards.

Added test 281 to verify this change.

show more ...


# 087579a6 21-Oct-2006 Daniel Stenberg

Nir Soffer for his Makefile.am fix


# 4e717cdb 21-Oct-2006 Daniel Stenberg

Armel Asselin separated CA cert verification problems from problems with
reading the (local) CA cert file to let users easier pinpoint the actual
problem. CURLE_SSL_CACERT_BADFILE (77) is the

Armel Asselin separated CA cert verification problems from problems with
reading the (local) CA cert file to let users easier pinpoint the actual
problem. CURLE_SSL_CACERT_BADFILE (77) is the new libcurl error code.

show more ...


# 786738dd 18-Oct-2006 Daniel Stenberg

changes done the last few days


# 65794f60 17-Oct-2006 Daniel Stenberg

Please welcome our new haxx.se curl mirror, for really fast Swedish access.


# 5ccbbe40 13-Oct-2006 Dan Fandrich

The tagging of application/x-www-form-urlencoded POST body data sent
to the CURLOPT_DEBUGFUNCTION callback has been fixed (it was erroneously
included as part of the header). A message was a

The tagging of application/x-www-form-urlencoded POST body data sent
to the CURLOPT_DEBUGFUNCTION callback has been fixed (it was erroneously
included as part of the header). A message was also added to the
command line tool to show when data is being sent, enabled when
--verbose is used.

show more ...


# ab60a124 12-Oct-2006 Daniel Stenberg

Starting now, adding an easy handle to a multi stack that was already added
to a multi stack will cause CURLM_BAD_EASY_HANDLE to get returned.


# b61c0638 12-Oct-2006 Daniel Stenberg

Jeff Pohlmeyer has been working with the hiperfifo.c example source code,
and while doing so it became apparent that the current timeout system for
the socket API really was a bit awkward sin

Jeff Pohlmeyer has been working with the hiperfifo.c example source code,
and while doing so it became apparent that the current timeout system for
the socket API really was a bit awkward since it become quite some work to
be sure we have the correct timeout set.

Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another
callback the app can set to get to know when the general timeout time
changes and thus for an application like hiperfifo.c it makes everything a
lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in
good old libcurl tradition.

show more ...


# 9263001b 09-Oct-2006 Daniel Stenberg

new mirrors


# befc30bc 06-Oct-2006 Daniel Stenberg

Bogdan Nicula's hanging test case was converted to test case 533 and the test
now runs fine.


# 5e0d9aea 30-Sep-2006 Daniel Stenberg

Support for FTP third party transfers is now dropped


# ae13c93b 28-Sep-2006 Daniel Stenberg

Reported in #1561470 (http://curl.haxx.se/bug/view.cgi?id=1561470), libcurl
would crash if a bad function sequence was used when shutting down after
using the multi interface (i.e using easy_

Reported in #1561470 (http://curl.haxx.se/bug/view.cgi?id=1561470), libcurl
would crash if a bad function sequence was used when shutting down after
using the multi interface (i.e using easy_cleanup after multi_cleanup) so
precautions have been added to make sure it doesn't any more - test case 529
was added to verify.

show more ...


# 1fa3a5cc 24-Sep-2006 Daniel Stenberg

Cory Nelson made libcurl use the WSAPoll() function if built for Windows
Vista (_WIN32_WINNT >= 0x0600)


# 296a7db9 23-Sep-2006 Daniel Stenberg

updated numbers


# f7d31bb3 23-Sep-2006 Daniel Stenberg

Mike Protts added --ftp-ssl-control to make curl use FTP-SSL, but only
encrypt the control connection and use the data connection "plain".


# 3ea8a4d2 23-Sep-2006 Daniel Stenberg

Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better as
it now will read the full data sent from servers. The SOCKS-related code was
also moved to the new lib/socks.c so

Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better as
it now will read the full data sent from servers. The SOCKS-related code was
also moved to the new lib/socks.c source file.

show more ...


# ab798fe5 21-Sep-2006 Daniel Stenberg

(FTP) a failed upload does not invalidate the control connection


# ec4a16f2 20-Sep-2006 Daniel Stenberg

Armel Asselin fixed problems when you gave a proxy URL with user name and
empty password or no password at all. Test case 278 and 279 were added to
verify.


# eee09e79 12-Sep-2006 Daniel Stenberg

stuff we do


# 29dc39fc 11-Sep-2006 Daniel Stenberg

- Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a
handle that is part of a multi handle first removes the handle from the
stack.

- Added CURLOPT_SSL_S

- Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a
handle that is part of a multi handle first removes the handle from the
stack.

- Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL
session-ID re-use on demand since there obviously are broken servers out
there that misbehave with session-IDs used.

show more ...


# 8d24c021 10-Sep-2006 Daniel Stenberg

curl_multi_socket() fix thanks to Jeff's test code


# b0f6e7ce 09-Sep-2006 Daniel Stenberg

Michele Bini fixed how the hostname is put in NTLM packages. As servers
don't expect fully qualified names we need to cut them off at the first dot.


# 8ec1bfe8 08-Sep-2006 Daniel Stenberg

Peter Sylvester cleaned up and fixed the getsockname() uses in ftp.c. Some
of them can be completetly removed though...


# b7eeb6e6 07-Sep-2006 Daniel Stenberg

Major overhaul introducing http pipelining support and shared connection
cache within the multi handle.


1...<<71727374757677787980>>...98