History log of /curl/RELEASE-NOTES (Results 1626 – 1650 of 2430)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 230e4547 04-Jun-2008 Daniel Stenberg

start working on 7.18.3!


Revision tags: curl-7_18_2
# 6f0a2608 03-Jun-2008 Dan Fandrich

Fixed a problem where telnet data would be lost if an EWOULDBLOCK
condition were encountered.


# ec4f6e93 28-May-2008 Daniel Stenberg

- Emil Romanus found a problem and helped me repeat it. It occured when using
the curl_multi_socket() API with HTTP pipelining enabled and could lead to
the pipeline basically stalling fo

- Emil Romanus found a problem and helped me repeat it. It occured when using
the curl_multi_socket() API with HTTP pipelining enabled and could lead to
the pipeline basically stalling for a very long period of time until it took
off again.

show more ...


# b49dcfb5 28-May-2008 Daniel Stenberg

- Jeff Weber reported memory leaks with aborted SCP and SFTP transfers and
provided excellent repeat recipes. I fixed the cases I managed to reproduce
but Jeff still got some (SCP) proble

- Jeff Weber reported memory leaks with aborted SCP and SFTP transfers and
provided excellent repeat recipes. I fixed the cases I managed to reproduce
but Jeff still got some (SCP) problems even after these fixes:
http://curl.haxx.se/mail/lib-2008-05/0342.html

show more ...


# f7815fa9 26-May-2008 Daniel Stenberg

- Bug report #1973352 (http://curl.haxx.se/bug/view.cgi?id=1973352) identified
how the HTTP redirect following code didn't properly follow to a new URL if
the new url was but a query stri

- Bug report #1973352 (http://curl.haxx.se/bug/view.cgi?id=1973352) identified
how the HTTP redirect following code didn't properly follow to a new URL if
the new url was but a query string such as "Location: ?moo=foo". Test case
1031 was added to verify this fix.

show more ...


# b97606f0 26-May-2008 Daniel Stenberg

Andreas Faerber and Scott McCreary made (lib)curl build for the Haiku OS


# c57e7481 26-May-2008 Yang Tse

David Rosenstrauch reported that header files spnegohelp.h and
openssl/objects.h were needed to compile SPNEGO support.


# a9a05a32 24-May-2008 Daniel Stenberg

Nikolai Kondrashov for his man page update


# b006c31b 19-May-2008 Daniel Stenberg

- When trying to repeat a multi interface problem I fell over a few multi
interface problems:

o with pipelining disabled, the state should never be set to WAITDO but
rather g

- When trying to repeat a multi interface problem I fell over a few multi
interface problems:

o with pipelining disabled, the state should never be set to WAITDO but
rather go straight to DO

o we had multiple states for which the internal function returned no socket
at all to wait for, with the effect that libcurl calls the socket callback
(when curl_multi_socket() is used) with REMOVE prematurely (as it would be
added again within very shortly)

o when in DO and DOING states, the HTTP and HTTPS protocol handler functions
didn't return that the socket should be waited for writing, but instead it
was treated as if no socket was needing monitoring so again REMOVE was
called prematurely.

show more ...


# 514592b8 12-May-2008 Daniel Stenberg

- Introducing curl_easy_send() and curl_easy_recv(). They can be used to send
and receive data over a connection previously setup with curl_easy_perform()
and its CURLOPT_CONNECT_ONLY opt

- Introducing curl_easy_send() and curl_easy_recv(). They can be used to send
and receive data over a connection previously setup with curl_easy_perform()
and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to
show how they can be used.

show more ...


# 19479ea0 09-May-2008 Yang Tse

Internal time differences now use monotonic time source if available.
This also implies the removal of the winmm.lib dependency for WIN32.


# 0510759b 09-May-2008 Daniel Stenberg

- Stefan Krause reported a busy-looping case when using the multi interface
and doing CONNECT to a proxy. The app would then busy-loop until the proxy
completed its response.


# e481d679 07-May-2008 Daniel Stenberg

- Liam Healy filed the debian bug report #480044
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480044) identifying a
segfault when using krb5 ftp, but the krb4 code had the same probl

- Liam Healy filed the debian bug report #480044
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480044) identifying a
segfault when using krb5 ftp, but the krb4 code had the same problem.

show more ...


# eb68aa38 07-May-2008 Yang Tse

Christopher Palow provided the patch (edited by me) that introduces
the use of microsecond resolution keys for internal splay trees.

http://curl.haxx.se/mail/lib-2008-04/0513.html


# 4e3d235e 03-May-2008 Daniel Stenberg

- Yuriy Sosov pointed out a configure fix for detecting c-ares when that is
built debug-enabled.


# fc9e0d22 03-May-2008 Daniel Stenberg

- Ben Van Hof filed bug report #1945240: "libcurl sometimes sends body twice
when using CURL_AUTH_ANY" (http://curl.haxx.se/bug/view.cgi?id=1945240).
The problem was that when libcurl rew

- Ben Van Hof filed bug report #1945240: "libcurl sometimes sends body twice
when using CURL_AUTH_ANY" (http://curl.haxx.se/bug/view.cgi?id=1945240).
The problem was that when libcurl rewound a stream meant for upload when it
would prepare for a second request, it could accidentally continue the
sending of the rewound data on the first request instead of on the second.
Ben also provided test case 1030 that verifies this fix.

show more ...


# b84b71f5 03-May-2008 Daniel Stenberg

- Jean-Francois Bertrand reported a libcurl crash with CURLOPT_TCP_NODELAY
since libcurl used getprotobyname() and that isn't thread-safe. We now
switched to use IPPROTO_TCP unconditional

- Jean-Francois Bertrand reported a libcurl crash with CURLOPT_TCP_NODELAY
since libcurl used getprotobyname() and that isn't thread-safe. We now
switched to use IPPROTO_TCP unconditionally, but perhaps the proper fix is
to detect the thread-safe version of the function and use that.
http://curl.haxx.se/mail/lib-2008-05/0011.html

show more ...


# 3d29bda9 01-May-2008 Daniel Stenberg

- Bart Whiteley provided a patch that made libcurl work properly when an app
uses the CURLOPT_OPENSOCKETFUNCTION callback to create a unix domain socket
to a http server.


# 85298985 30-Apr-2008 Daniel Stenberg

- To make it easier for applications that want lots of magic stuff done on
redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now
introduce the new CURLINFO_REDIRECT_URL o

- To make it easier for applications that want lots of magic stuff done on
redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now
introduce the new CURLINFO_REDIRECT_URL option that lets applications
extract the URL libcurl would've redirected to if it had been told to. This
then enables the application to continue to that URL as it thinks is
suitable, without having to re-implement the magic of creating the new URL
from the Location: header etc. Test 1029 verifies it.

show more ...


# 7a6cff4b 28-Apr-2008 Daniel Stenberg

- Norbert Frese filed bug report #1951588: "Problem with curlftpfs and
libcurl" (http://curl.haxx.se/bug/view.cgi?id=1951588) which seems to be an
identical report to what Denis Golovan r

- Norbert Frese filed bug report #1951588: "Problem with curlftpfs and
libcurl" (http://curl.haxx.se/bug/view.cgi?id=1951588) which seems to be an
identical report to what Denis Golovan reported in
http://curl.haxx.se/mail/lib-2008-02/0108.html The FTP code didn't reset the
user/password pointers properly even though there might've been a new
struct/cconnection getting used.

show more ...


# 1960eebc 22-Apr-2008 Dan Fandrich

Added support for running on Symbian OS.


# af41ada7 14-Apr-2008 Michal Marek

allow disabling the typechecker by defining CURL_DISABLE_TYPECHECK, as
discussed in http://curl.haxx.se/mail/lib-2008-04/0291.html


# 6a33a445 14-Apr-2008 Daniel Stenberg

- Stefan Krause reported a case where the OpenSSL handshake phase wasn't
properly acknowledging the timeout values, like if you pulled the network
plug in the midst of it.


# cda1f2be 14-Apr-2008 Daniel Stenberg

mention Sandor as contributor


# ead2618c 14-Apr-2008 Daniel Stenberg

- Brock Noland reported that curl behaved differently depending on which order
you used -i and -I.


1...<<61626364656667686970>>...98