1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00
curl/RELEASE-NOTES
Daniel Stenberg ac022b2e30 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.
2005-02-16 14:31:23 +00:00

39 lines
1.3 KiB
Plaintext

Curl and libcurl 7.13.1
Public curl release number: 86
Releases counted from the very beginning: 113
Available command line options: 104
Available curl_easy_setopt() options: 122
Number of public functions in libcurl: 46
Amount of public web site mirrors: 15
Number of known libcurl bindings: 29
This release includes the following changes:
o FTP code overhaul => multi interface much less blocking
o Added CURLE_LOGIN_DENIED to be returned when curl is denied login to FTP
servers
This release includes the following bugfixes:
o HTTP POST with --anyauth picking NTLM
o SSL problems when downloading exactly 16KB data
o out of memory conditions preserve error codes better
o a few crashes at out of memory
o inflate buffer usage bugfix
o better DICT protocol adherence
o disable valgrind-checking while testing if libcurl is built shared
o locale names in some date strings
Other curl-related news since the previous public release:
o pycurl 7.13.0: http://pycurl.sf.net/
This release would not have looked like this without help, code, reports and
advice from friends like these:
Gisle Vanem, David Byron, Marty Kuhrt, Maruko, Eric Vergnaud, Christopher
R. Palmer
Thanks! (and sorry if I forgot to mention someone)