History log of /curl/RELEASE-NOTES (Results 2201 – 2225 of 2421)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 6f752c64 04-Mar-2005 Daniel Stenberg

Dave Dribin made it possible to set CURLOPT_COOKIEFILE to "" to activate
the cookie "engine" without having to provide an empty or non-existing file.


# 7012a4a2 04-Mar-2005 Daniel Stenberg

Rene Rebe fixed a -# crash when more data than expected was retrieved.


# 40ab20a2 03-Mar-2005 Daniel Stenberg

new VB binding


# 861b5e60 03-Mar-2005 Daniel Stenberg

mention buffer overflows fixed


# 5ba188ab 18-Feb-2005 Daniel Stenberg

Ralph Mitchell reported a flaw when you used a proxy with auth, and you
requested data from a host and then followed a redirect to another
host. libcurl then didn't use the proxy-auth properl

Ralph Mitchell reported a flaw when you used a proxy with auth, and you
requested data from a host and then followed a redirect to another
host. libcurl then didn't use the proxy-auth properly in the second request,
due to the host-only check for original host name wrongly being extended to
the proxy auth as well. Added test case 233 to verify the flaw and that the
fix removed the problem.

show more ...


# eadfd78c 18-Feb-2005 Daniel Stenberg

socket leak, mingw build


# ac022b2e 16-Feb-2005 Daniel Stenberg

Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth"
that picks NTLM. Thanks to David Byron letting me test NTLM against his
servers, I could quickly repeat and fix the

Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth"
that picks NTLM. Thanks to David Byron letting me test NTLM against his
servers, I could quickly repeat and fix the problem. It turned out to be:

When libcurl POSTs without knowing/using an authentication and it gets back a
list of types from which it picks NTLM, it needs to either continue sending
its data if it keeps the connection alive, or not send the data but close the
connection. Then do the first step in the NTLM auth. libcurl didn't send the
data nor close the connection but simply read the response-body and then sent
the first negotiation step. Which then failed miserably of course. The fixed
version forces a connection if there is more than 2000 bytes left to send.

show more ...


# e7cefd68 11-Feb-2005 Daniel Stenberg

Removed all uses of strftime() since it uses the localised version of the
week day names and month names and servers don't like that.


# d2485e4f 10-Feb-2005 Daniel Stenberg

valgrind stuff for test suite, vms build and more


Revision tags: before_ftp_statemachine
# 0d930153 01-Feb-2005 Daniel Stenberg

and we start over again


Revision tags: curl-7_13_0
# 4a9e1254 01-Feb-2005 Daniel Stenberg

7.13 coming up


# 064bc3ec 28-Jan-2005 Daniel Stenberg

Stephen More pointed out that CURLOPT_FTPPORT and the -P option didn't work
when built ipv6-enabled. I've now made a fix for it. Writing test cases for
custom port strings turned too tricky s

Stephen More pointed out that CURLOPT_FTPPORT and the -P option didn't work
when built ipv6-enabled. I've now made a fix for it. Writing test cases for
custom port strings turned too tricky so unfortunately there's none.

show more ...


# 177dbc7b 25-Jan-2005 Daniel Stenberg

Ian Ford asked about support for the FTP command ACCT, and I discovered it is
present in RFC959... so now (lib)curl supports it as well. --ftp-account and
CURLOPT_FTP_ACCOUNT set the account

Ian Ford asked about support for the FTP command ACCT, and I discovered it is
present in RFC959... so now (lib)curl supports it as well. --ftp-account and
CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account
string after PASS have been sent away. The client responds with "ACCT [account
string]".) Added test case 228 and 229 to verify the functionality. Updated
the test FTP server to support ACCT somewhat.

show more ...


# fad6e5a5 25-Jan-2005 Daniel Stenberg

new web mirror


# 4f7e9589 23-Jan-2005 Daniel Stenberg

two options less


# 7e42cb61 21-Jan-2005 Daniel Stenberg

FTP third transfer support overhaul. See CHANGES for details.


# 7472ede3 20-Jan-2005 Daniel Stenberg

Philippe Hameau found out that -Q "+[command]" didn't work, although some code
was written for it. I fixed and added test case 227 to verify it. The curl.1
man page didn't mention the '+' so

Philippe Hameau found out that -Q "+[command]" didn't work, although some code
was written for it. I fixed and added test case 227 to verify it. The curl.1
man page didn't mention the '+' so I added it.

show more ...


# 01205f77 19-Jan-2005 Daniel Stenberg

today's proxy fixes


# b1080f7c 18-Jan-2005 Daniel Stenberg

Cody Jones' enhanced version of Samuel D�az Garc�a's MSVC makefile patch.


# ae03fa7d 17-Jan-2005 Daniel Stenberg

mention the name-prefix protocol guess thing


# 0e263553 13-Jan-2005 Daniel Stenberg

Inspired by Martijn Koster's patch and example source at
http://www.greenhills.co.uk/mak/gentoo/curl-eintr-bug.c, I now made the
select() and poll() calls properly loop if they return -1 and

Inspired by Martijn Koster's patch and example source at
http://www.greenhills.co.uk/mak/gentoo/curl-eintr-bug.c, I now made the
select() and poll() calls properly loop if they return -1 and errno is
EINTR. glibc docs for this is found here:
http://www.gnu.org/software/libc/manual/html_node/Interrupted-Primitives.html

This last link says BSD doesn't have this "effect". Will there be a problem
if we do this unconditionally?
S: ----------------------------------------------------------------------

show more ...


# c5b2e85b 11-Jan-2005 Daniel Stenberg

Dan Torop cleaned up a few no longer used variables from David Phillips'
select() overhaul fix.


# 29102bef 11-Jan-2005 Daniel Stenberg

Cyrill Osterwalder posted a detailed analysis about a bug that occurs when
using a custom Host: header and curl fails to send a request on a re-used
persistent connection and thus creates a n

Cyrill Osterwalder posted a detailed analysis about a bug that occurs when
using a custom Host: header and curl fails to send a request on a re-used
persistent connection and thus creates a new connection and resends it. It
then sent two Host: headers. Cyrill's analysis was posted here:
http://curl.haxx.se/mail/archive-2005-01/0022.html

show more ...


# 9d114559 10-Jan-2005 Daniel Stenberg

Bruce Mitchener identified (bug report #1099640) the never-ending SOCKS5
problem with the version byte and the check for bad versions. Bruce has lots
of clues on this, and based on his sugges

Bruce Mitchener identified (bug report #1099640) the never-ending SOCKS5
problem with the version byte and the check for bad versions. Bruce has lots
of clues on this, and based on his suggestion I've now removed the check of
that byte since it seems to be able to contain 1 or 5.

show more ...


# 3ac00f32 10-Jan-2005 Daniel Stenberg

edited wording


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