Updated the copyright year since changes have been this year.
[platform/upstream/curl.git] / TODO-RELEASE
1 Issues not sorted in any particular order.
2
3 To get fixed in 7.13.3 (planned release: June 2005)
4 ======================
5
6 58 - Fix KNOWN_BUGS #19: "FTP 3rd party transfers with the multi interface
7      doesn't work"
8
9 47 - Peter Sylvester's patch for SRP on the TLS layer
10      Awaits OpenSSL support for this, no need to support this in libcurl before
11      there's an OpenSSL release that does it.
12
13 To get fixed in 7.14.0
14 ======================
15
16 55 - Add a function to the multi interface that gets file descriptors, as an
17      alternative to the curl_multi_fdset(). This is necessary to allow apps to
18      properly avoid the FD_SETSIZE problem.
19
20 56 - Make curl_easy_perform() a wrapper-function that simply creates a multi
21      handle, adds the easy handle to it, runs curl_multi_perform() until the
22      transfer is done, then detach the easy handle, destroy the multi handle
23      and return the easy handle's return code. This will thus make everything
24      internally use and assume the multi interface. The select()-loop should
25      use the new function from (55).
26
27 To get fixed in 7.15.0
28 ======================
29
30 57 - Add an interface to libcurl for getting and setting cookies from an easy
31      handle. One idea: http://curl.haxx.se/mail/lib-2004-12/0195.html the
32      older idea: http://curl.haxx.se/dev/COOKIES. We need to settle on some
33      middle ground I guess.
34
35 60 -