History log of /curl/RELEASE-NOTES (Results 2051 – 2075 of 2421)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 3dad55d7 26-Mar-2006 Daniel Stenberg

Tor Arntsen figured out that TFTP was broken on a lot of systems since we
called bind() with a too big argument in the 3rd parameter and at least
Tru64, AIX and IRIX seem to be very picky abo

Tor Arntsen figured out that TFTP was broken on a lot of systems since we
called bind() with a too big argument in the 3rd parameter and at least
Tru64, AIX and IRIX seem to be very picky about it.

show more ...


# 598ffeea 21-Mar-2006 Daniel Stenberg

David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry path


# 83367f67 21-Mar-2006 Daniel Stenberg

Xavier Bouchoux made the SSL connection non-blocking for the multi interface
(when using OpenSSL).


# 15f2647d 21-Mar-2006 Daniel Stenberg

Tor Arntsen fixed the AIX Toolbox RPM spec


# 6421d69b 20-Mar-2006 Daniel Stenberg

David McCreedy fixed libcurl to no longer ignore AUTH failures and now it
reacts properly according to the CURLOPT_FTP_SSL setting.


# 18081e30 20-Mar-2006 Daniel Stenberg

mention today's fixes


# b8fad99f 20-Mar-2006 Daniel Stenberg

start working towards 7.15.4


Revision tags: curl-7_15_3
# 59752299 20-Mar-2006 Daniel Stenberg

fixed tftp packet overflow risk


# cffebd7f 07-Mar-2006 Daniel Stenberg

Markus Koetter filed debian bug report #355715 which identified a problem
with the multi interface and multi-part formposts. The fix from February
22nd could make the Curl_done() function get

Markus Koetter filed debian bug report #355715 which identified a problem
with the multi interface and multi-part formposts. The fix from February
22nd could make the Curl_done() function get called twice on the same
connection and it was not designed for that and thus tried to call free() on
an already freed memory area!

show more ...


# b8c8e734 07-Mar-2006 Daniel Stenberg

Peter Heuchert made sure the CURLFTPSSL_CONTROL setting for CURLOPT_FTP_SSL
is used properly.


# 8bba99ae 06-Mar-2006 Daniel Stenberg

Lots of users on Windows have reported getting the "SSL: couldn't set
callback" error message so I've now made the setting of that callback not be
as critical as before. The function is only

Lots of users on Windows have reported getting the "SSL: couldn't set
callback" error message so I've now made the setting of that callback not be
as critical as before. The function is only used for additional loggging/
trace anyway so a failure just means slightly less data. It should still be
able to proceed and connect fine to the server.

show more ...


# b5c5f576 04-Mar-2006 Daniel Stenberg

build fix for Interix


# 7d68101f 03-Mar-2006 Daniel Stenberg

Prevent uploading to a URL that has no file name part.


# d7999f9f 02-Mar-2006 Daniel Stenberg

mention Dan F's out-of-file handles fix from the other day


# f13eba4c 02-Mar-2006 Daniel Stenberg

check for and use getprotobyname


# b10aa95d 27-Feb-2006 Daniel Stenberg

start over on what might become 7.15.3


Revision tags: curl-7_15_2
# 6fdbb011 23-Feb-2006 Daniel Stenberg

Lots of work and analysis by "xbx___" in bug #1431750
(http://curl.haxx.se/bug/view.cgi?id=1431750) helped me identify and fix two
different but related bugs:

1) Removing an easy han

Lots of work and analysis by "xbx___" in bug #1431750
(http://curl.haxx.se/bug/view.cgi?id=1431750) helped me identify and fix two
different but related bugs:

1) Removing an easy handle from a multi handle before the transfer is done
could leave a connection in the connection cache for that handle that is
in a state that isn't suitable for re-use. A subsequent re-use could then
read from a NULL pointer and segfault.

2) When an easy handle was removed from the multi handle, there could be an
outstanding c-ares DNS name resolve request. When the response arrived,
it caused havoc since the connection struct it "belonged" to could've
been freed already.

Now Curl_done() is called when an easy handle is removed from a multi handle
pre-maturely (that is, before the transfer was complteted). Curl_done() also
makes sure to cancel all (if any) outstanding c-ares requests.

show more ...


# a15d107d 21-Feb-2006 Daniel Stenberg

Peter Su added support for SOCKS4 proxies. Enable this by setting the proxy
type to the already provided type CURLPROXY_SOCKS4.
I added a --socks4 option that works like the current --socks5

Peter Su added support for SOCKS4 proxies. Enable this by setting the proxy
type to the already provided type CURLPROXY_SOCKS4.
I added a --socks4 option that works like the current --socks5 option but
instead use the socks4 protocol.

show more ...


# 29e446e5 19-Feb-2006 Daniel Stenberg

Shmulik Regev fixed an issue with multi-pass authentication and compressed
content when libcurl didn't honor the internal ignorebody flag.


# 10beb36b 18-Feb-2006 Daniel Stenberg

Ulf H�rnhammar fixed a format string (printf style) problem in the Negotiate
code. It should however not be the cause of any troubles. He also fixed a
few similar problems in the HTTP test se

Ulf H�rnhammar fixed a format string (printf style) problem in the Negotiate
code. It should however not be the cause of any troubles. He also fixed a
few similar problems in the HTTP test server code.

show more ...


# 92009181 16-Feb-2006 Daniel Stenberg

Shmulik Regev provided a fix for the DNS cache when using short life times,
as previously it could be holding on to old cached entries longer than
requested.


# 87bcb6f3 11-Feb-2006 Daniel Stenberg

Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that
an app can use to let libcurl only connect to a remote host and then extract
the socket from libcurl. libcurl will t

Karl M added the CURLOPT_CONNECT_ONLY and CURLINFO_LASTSOCKET options that
an app can use to let libcurl only connect to a remote host and then extract
the socket from libcurl. libcurl will then not attempt to do any transfer at
all after the connect is done.

show more ...


# b0bc2f00 11-Feb-2006 Daniel Stenberg

Kent Boortz improved the configure check for GnuTLS to properly set LIBS
instead of LDFLAGS.


# 12f5c67b 07-Feb-2006 Daniel Stenberg

Philippe Vaucher provided a brilliant piece of test code that show a problem
with re-used FTP connections. If the second request on the same connection was
set not to fetch a "body", libcurl

Philippe Vaucher provided a brilliant piece of test code that show a problem
with re-used FTP connections. If the second request on the same connection was
set not to fetch a "body", libcurl could get confused and consider it an
attempt to use a dead connection and would go acting mighty strange.

show more ...


# 8cb695a9 01-Feb-2006 Daniel Stenberg

fixed --limit-rate


1...<<81828384858687888990>>...97