History log of /curl/RELEASE-NOTES (Results 2101 – 2125 of 2421)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# adf462fe 13-Nov-2005 Daniel Stenberg

Debian bug report 338681 by Jan Kunder: make curl better detect and report bad
limit-rate units: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338681 Now
curl will return error if a bad un

Debian bug report 338681 by Jan Kunder: make curl better detect and report bad
limit-rate units: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338681 Now
curl will return error if a bad unit is used.

show more ...


# c2862742 13-Nov-2005 Daniel Stenberg

Thanks to this nice summary of poll() implementations:
http://www.greenend.org.uk/rjk/2001/06/poll.html and further tests by Eugene
Kotlyarov, we now know that cygwin's poll returns only POLL

Thanks to this nice summary of poll() implementations:
http://www.greenend.org.uk/rjk/2001/06/poll.html and further tests by Eugene
Kotlyarov, we now know that cygwin's poll returns only POLLHUP on remote
connection closure so we check for that case (too) and re-enable poll for
cygwin builds.

show more ...


# 8a712eb5 12-Nov-2005 Daniel Stenberg

Eugene Kotlyarov found out that cygwin's poll() function isn't doing things
right: http://curl.haxx.se/mail/archive-2005-11/0045.html so we now disable
poll() and use select() on cygwin too (

Eugene Kotlyarov found out that cygwin's poll() function isn't doing things
right: http://curl.haxx.se/mail/archive-2005-11/0045.html so we now disable
poll() and use select() on cygwin too (we already do the same choice on Mac OS
X)

show more ...


# 5e383605 11-Nov-2005 Daniel Stenberg

Dima Barsky patched problem #1348930: the GnuTLS code completely ignored
client certificates! (http://curl.haxx.se/bug/view.cgi?id=1348930).


# 4f173f35 10-Nov-2005 Daniel Stenberg

Fun while it lasted. New mirror already out-of-date.


# ae9fbe57 10-Nov-2005 Daniel Stenberg

David Lang fixed IPv6 support for TFTP!


# bd8baed1 10-Nov-2005 Daniel Stenberg

Introducing range stepping to the curl globbing support. Now you can specify
step counter by adding :[num] within the brackets when specifying a range.


# cab59b4c 08-Nov-2005 Daniel Stenberg

Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions since
we really have no use for reverse lookups of the address.

I truly hope these are the last reverse lookups we

Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions since
we really have no use for reverse lookups of the address.

I truly hope these are the last reverse lookups we had lingering in the
code!

show more ...


# 931eff89 08-Nov-2005 Daniel Stenberg

SSPI-fix and a new mirror


# a8fc5d0f 05-Nov-2005 Daniel Stenberg

CurlPas 2005-11-05 was released: http://curlpas.sf.net/


# b91421b1 31-Oct-2005 Daniel Stenberg

Vilmos Nebehaj improved libcurl's LDAP abilities:

The LDAP code in libcurl can't handle LDAP servers of LDAPv3 nor binary
attributes in LDAP objects. So, I made a quick patch to address

Vilmos Nebehaj improved libcurl's LDAP abilities:

The LDAP code in libcurl can't handle LDAP servers of LDAPv3 nor binary
attributes in LDAP objects. So, I made a quick patch to address these
problems.

The solution is simple: if we connect to an LDAP server, first try LDAPv3
(which is the preferred protocol as of now) and then fall back to LDAPv2.
In case of binary attributes, we first convert them to base64, just like the
openldap client does. It uses ldap_get_values_len() instead of
ldap_get_values() to be able to retrieve binary attributes correctly. I
defined the necessary LDAP macros in lib/ldap.c to be able to compile
libcurl without the presence of libldap

show more ...


# 9ea423b4 29-Oct-2005 Daniel Stenberg

--max-redirs 0


# 6f8fe67a 27-Oct-2005 Daniel Stenberg

tommink[at]post.pl reported in bug report #1337723
(http://curl.haxx.se/bug/view.cgi?id=1337723) that curl could not upload
binary data from stdin on Windows if the data contained control-Z (

tommink[at]post.pl reported in bug report #1337723
(http://curl.haxx.se/bug/view.cgi?id=1337723) that curl could not upload
binary data from stdin on Windows if the data contained control-Z (hex 1a)
since that is treated as end-of-file when read in text mode. Gisle Vanem
pointed out the fix, and I made both -T and --data-binary take advantage of
it.

show more ...


# 9d152a77 27-Oct-2005 Daniel Stenberg

Jaz Fresh pointed out that if you used "-r [number]" as was wrongly described
in the man page, curl would send an invalid HTTP Range: header. The correct
way would be to use "-r [number]-" or

Jaz Fresh pointed out that if you used "-r [number]" as was wrongly described
in the man page, curl would send an invalid HTTP Range: header. The correct
way would be to use "-r [number]-" or even "-r -[number]". Starting now,
curl will warn if this is discovered, and automatically append a dash to the
range before passing it to libcurl.

show more ...


# 33dc28b9 25-Oct-2005 Daniel Stenberg

multi IP socket description leak with multi interface


# 715b706c 21-Oct-2005 Daniel Stenberg

Temprimus improved the MSVC makefile so that the static debug SSL libs are
linked to the executable and not to the libcurld.lib
http://curl.haxx.se/bug/view.cgi?id=1326676


# bfa9c42c 21-Oct-2005 Daniel Stenberg

Bradford Bruce made the windows resolver code properly return
CURLE_COULDNT_RESOLVE_PROXY and CURLE_COULDNT_RESOLVE_HOST on resolving
errors (as documented).


# be9c873a 20-Oct-2005 Daniel Stenberg

Dave Dribin made libcurl understand and handle cases when the server
(wrongly) sends *two* WWW-Authenticate headers for Digest. While this should
never happen in a sane world, libcurl previou

Dave Dribin made libcurl understand and handle cases when the server
(wrongly) sends *two* WWW-Authenticate headers for Digest. While this should
never happen in a sane world, libcurl previously got into an infinite loop
when this occurred. Dave added test 273 to verify this.

show more ...


# 034d80f6 20-Oct-2005 Daniel Stenberg

2 mirrors, 1 binding release


# f335bac8 14-Oct-2005 Daniel Stenberg

Reverted the LIBCURL_VERSION_NUM change from October 6. As Dave Dribin
reported, the define is used by the configure script and is assumed to use
the 0xYYXXZZ format. This made "curl-config -

Reverted the LIBCURL_VERSION_NUM change from October 6. As Dave Dribin
reported, the define is used by the configure script and is assumed to use
the 0xYYXXZZ format. This made "curl-config --vernum" fail in the 7.15.0
release version.

show more ...


# e73c6e03 13-Oct-2005 Daniel Stenberg

start working on 7.15.1


Revision tags: curl-7_15_0
# 96cec4df 13-Oct-2005 Daniel Stenberg

7.15.0 time


# 62fdf8ea 06-Oct-2005 Daniel Stenberg

we all the next version 7.15.0 due to the new TFTP support


# 934d312f 05-Oct-2005 Daniel Stenberg

mention the recent fixes


# db83a0eb 04-Oct-2005 Daniel Stenberg

Michael Wallner reported that the date parser had wrong offset stored for
the MEST and CEST time zones.


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