curl/TODO-RELEASE

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2004-01-29 11:00:10 -05:00
Issues not sorted in any particular order.
2004-06-29 07:27:33 -04:00
To get fixed in 7.14.1 (planned release: June 2005)
2005-01-22 04:03:55 -05:00
======================
2005-02-01 02:54:36 -05:00
58 - Fix KNOWN_BUGS #19: "FTP 3rd party transfers with the multi interface
doesn't work"
2005-01-22 04:03:55 -05:00
2004-10-04 06:37:30 -04:00
47 - Peter Sylvester's patch for SRP on the TLS layer
2004-11-11 11:56:34 -05:00
Awaits OpenSSL support for this, no need to support this in libcurl before
there's an OpenSSL release that does it.
2004-12-25 18:15:45 -05:00
To get fixed in 7.15.0
2005-01-22 04:03:55 -05:00
======================
55 - Add a function to the multi interface that gets file descriptors, as an
alternative to the curl_multi_fdset(). This is necessary to allow apps to
properly avoid the FD_SETSIZE problem.
56 - Make curl_easy_perform() a wrapper-function that simply creates a multi
handle, adds the easy handle to it, runs curl_multi_perform() until the
transfer is done, then detach the easy handle, destroy the multi handle
and return the easy handle's return code. This will thus make everything
internally use and assume the multi interface. The select()-loop should
use the new function from (55).
2005-01-30 08:26:12 -05:00
To get fixed in 7.16.0
======================
2005-01-30 08:26:12 -05:00
57 - Add an interface to libcurl for getting and setting cookies from an easy
handle. One idea: http://curl.haxx.se/mail/lib-2004-12/0195.html the
older idea: http://curl.haxx.se/dev/COOKIES. We need to settle on some
middle ground I guess.
2005-03-13 19:52:14 -05:00
60 -