History log of /curl/RELEASE-NOTES (Results 2101 – 2125 of 2431)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# e4d8cb4e 06-Jan-2006 Daniel Stenberg

buildconf fixes


# 2f8c26ba 04-Jan-2006 Daniel Stenberg

not much recent stuff, but still I had this modified locally


# 6dbfce10 16-Dec-2005 Daniel Stenberg

Jean Jacques Drouin pointed out that you could only have a user name or
password of 127 bytes or less embedded in a URL, where actually the code
uses a 255 byte buffer for it! Modified now to

Jean Jacques Drouin pointed out that you could only have a user name or
password of 127 bytes or less embedded in a URL, where actually the code
uses a 255 byte buffer for it! Modified now to use the full buffer size.

show more ...


# e1269e31 06-Dec-2005 Daniel Stenberg

start working on 7.15.2


Revision tags: curl-7_15_1
# f49df54a 06-Dec-2005 Daniel Stenberg

7.15.1 with the now to be announced security flaw fixed


# 65133034 01-Dec-2005 Daniel Stenberg

Jamie Newton pointed out that libcurl's file:// code would close() a zero
file descriptor if given a non-existing file.


# cdf4afbe 28-Nov-2005 Daniel Stenberg

Bryan Henderson


# 74e5beab 24-Nov-2005 Daniel Stenberg

Doug Kaufman's set of patches to make curl build fine on DJGPP again using
configure.


# 4022a60e 17-Nov-2005 Daniel Stenberg

I extended a patch from David Shaw to make libcurl _always_ provide an error
string in the given error buffer to address the flaw mention on 21 sep 2005.


# 09667582 16-Nov-2005 Daniel Stenberg

Applied Albert Chin's patch that makes the libcurl.pc pkgconfig file get
installed on 'make install' time.


# 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


1...<<81828384858687888990>>...98