blob: ac16f116fe33db075b9aa01aaf3fee436ca2581e [file] [log] [blame]
Daniel Stenberg7c37c6a2000-05-22 17:35:35 +00001 _ _ ____ _
2 ___| | | | _ \| |
3 / __| | | | |_) | |
4 | (__| |_| | _ <| |___
5 \___|\___/|_| \_\_____|
6
7TODO
8
Daniel Stenberg9d68fde2002-08-14 23:35:19 +00009 Things to do in project cURL. Please tell us what you think, contribute and
10 send us patches that improve things! Also check the http://curl.haxx.se/dev
11 web section for various technical development notes.
Daniel Stenberg7c37c6a2000-05-22 17:35:35 +000012
Daniel Stenberg3660f672003-08-11 16:17:51 +000013 All bugs documented in the KNOWN_BUGS document are subject for fixing!
14
Daniel Stenberge60e7412001-11-02 12:51:18 +000015 LIBCURL
Daniel Stenberg6704d442001-08-22 11:22:43 +000016
Daniel Stenberg9d68fde2002-08-14 23:35:19 +000017 * Introduce an interface to libcurl that allows applications to easier get to
18 know what cookies that are received. Pushing interface that calls a
19 callback on each received cookie? Querying interface that asks about
Daniel Stenbergeb6a14f2003-01-07 07:54:14 +000020 existing cookies? We probably need both. Enable applications to modify
Daniel Stenberg1a393f52003-06-26 11:38:53 +000021 existing cookies as well. http://curl.haxx.se/dev/COOKIES
Daniel Stenberg2c39a432001-07-02 08:21:25 +000022
Daniel Stenberg2d503912001-06-19 09:12:27 +000023 * Introduce another callback interface for upload/download that makes one
24 less copy of data and thus a faster operation.
Daniel Stenberge60e7412001-11-02 12:51:18 +000025 [http://curl.haxx.se/dev/no_copy_callbacks.txt]
26
Daniel Stenberg3660f672003-08-11 16:17:51 +000027 * More data sharing. curl_share_* functions already exist and work, and they
28 can be extended to share more.
Daniel Stenberg01cfe672002-01-18 12:48:36 +000029
Daniel Stenberg01cfe672002-01-18 12:48:36 +000030 * Set the SO_KEEPALIVE socket option to make libcurl notice and disconnect
31 very long time idle connections.
Daniel Stenberg558d12d2001-12-17 10:32:10 +000032
Daniel Stenbergc9c00d22002-01-22 13:10:16 +000033 * Go through the code and verify that libcurl deals with big files >2GB and
Daniel Stenberg3660f672003-08-11 16:17:51 +000034 >4GB all over. Bug reports (and source reviews) show that it doesn't
35 currently work.
Daniel Stenbergc9c00d22002-01-22 13:10:16 +000036
Daniel Stenberg87c43512002-08-26 22:32:46 +000037 LIBCURL - multi interface
38
Daniel Stenberg3660f672003-08-11 16:17:51 +000039 * Add curl_multi_timeout() to make libcurl's ares-functionality better.
40
Daniel Stenberg87c43512002-08-26 22:32:46 +000041 * Make sure we don't ever loop because of non-blocking sockets return
Daniel Stenberg065b87e2003-02-24 18:14:48 +000042 EWOULDBLOCK or similar. This FTP command sending, the SSL connection etc.
Daniel Stenberg87c43512002-08-26 22:32:46 +000043
Daniel Stenberg065b87e2003-02-24 18:14:48 +000044 * Make transfers treated more carefully. We need a way to tell libcurl we
45 have data to write, as the current system expects us to upload data each
46 time the socket is writable and there is no way to say that we want to
47 upload data soon just not right now, without that aborting the upload. The
48 opposite situation should be possible as well, that we tell libcurl we're
49 ready to accept read data. Today libcurl feeds the data as soon as it is
50 available for reading, no matter what.
Daniel Stenberg87c43512002-08-26 22:32:46 +000051
Daniel Stenberge60e7412001-11-02 12:51:18 +000052 DOCUMENTATION
53
Daniel Stenberg87c43512002-08-26 22:32:46 +000054 * More and better
Daniel Stenberge60e7412001-11-02 12:51:18 +000055
56 FTP
57
Daniel Stenberg339f84f2003-07-30 13:41:59 +000058 * Support the most common FTP proxies, Philip Newton provided a list
59 allegedly from ncftp:
60 http://curl.haxx.se/mail/archive-2003-04/0126.html
61
Daniel Stenbergc0acaa52003-04-28 17:29:32 +000062 * Make CURLOPT_FTPPORT support an additional port number on the IP/if/name,
63 like "blabla:[port]" or possibly even "blabla:[portfirst]-[portsecond]".
64
Daniel Stenbergb7567972003-05-26 08:19:06 +000065 * FTP ASCII transfers do not follow RFC959. They don't convert the data
66 accordingly.
Daniel Stenberg0058e872001-05-18 12:55:13 +000067
Daniel Stenbergeb6a14f2003-01-07 07:54:14 +000068 * Since USERPWD always override the user and password specified in URLs, we
69 might need another way to specify user+password for anonymous ftp logins.
70
Daniel Stenberge60e7412001-11-02 12:51:18 +000071 HTTP
Daniel Stenberg2c39a432001-07-02 08:21:25 +000072
Daniel Stenbergd095b202003-10-17 12:37:15 +000073 * Digest and GSS-Negotiate support for HTTP proxies. They only work on
74 direct-connections to the server.
Daniel Stenberg01cfe672002-01-18 12:48:36 +000075
76 * Pipelining. Sending multiple requests before the previous one(s) are done.
77 This could possibly be implemented using the multi interface to queue
78 requests and the response data.
Daniel Stenberg7c37c6a2000-05-22 17:35:35 +000079
Daniel Stenberge60e7412001-11-02 12:51:18 +000080 TELNET
Daniel Stenberg7c37c6a2000-05-22 17:35:35 +000081
Daniel Stenberg01cfe672002-01-18 12:48:36 +000082 * Reading input (to send to the remote server) on stdin is a crappy solution
83 for library purposes. We need to invent a good way for the application to
84 be able to provide the data to send.
85
86 * Move the telnet support's network select() loop go away and merge the code
87 into the main transfer loop. Until this is done, the multi interface won't
88 work for telnet.
89
Daniel Stenberge60e7412001-11-02 12:51:18 +000090 SSL
91
Daniel Stenberg5cffe052002-02-07 10:43:43 +000092 * If you really want to improve the SSL situation, you should probably have a
93 look at SSL cafile loading as well - quick traces look to me like these are
94 done on every request as well, when they should only be necessary once per
95 ssl context (or once per handle). Even better would be to support the SSL
96 CAdir option - instead of loading all of the root CA certs for every
97 request, this option allows you to only read the CA chain that is actually
98 required (into the cache)...
99
Daniel Stenberg60f19262001-11-13 09:56:29 +0000100 * Add an interface to libcurl that enables "session IDs" to get
101 exported/imported. Cris Bailiff said: "OpenSSL has functions which can
102 serialise the current SSL state to a buffer of your choice, and
103 recover/reset the state from such a buffer at a later date - this is used
Daniel Stenberg01cfe672002-01-18 12:48:36 +0000104 by mod_ssl for apache to implement and SSL session ID cache". This whole
105 idea might become moot if we enable the 'data sharing' as mentioned in the
106 LIBCURL label above.
Daniel Stenberg60f19262001-11-13 09:56:29 +0000107
Daniel Stenberg5c4b4222002-02-18 10:51:28 +0000108 * OpenSSL supports a callback for customised verification of the peer
109 certificate, but this doesn't seem to be exposed in the libcurl APIs. Could
110 it be? There's so much that could be done if it were! (brought by Chris
111 Clark)
112
Daniel Stenberge60e7412001-11-02 12:51:18 +0000113 * Make curl's SSL layer option capable of using other free SSL libraries.
114 Such as the Mozilla Security Services
115 (http://www.mozilla.org/projects/security/pki/nss/) and GNUTLS
116 (http://gnutls.hellug.gr/)
117
Daniel Stenberg01cfe672002-01-18 12:48:36 +0000118 LDAP
119
120 * Look over the implementation. The looping will have to "go away" from the
121 lib/ldap.c source file and get moved to the main network code so that the
122 multi interface and friends will work for LDAP as well.
123
Daniel Stenberg3e049a92001-11-13 09:06:32 +0000124 CLIENT
Daniel Stenberge60e7412001-11-02 12:51:18 +0000125
Daniel Stenberg87c43512002-08-26 22:32:46 +0000126 * Add an option that prevents cURL from overwiting existing local files. When
127 used, and there already is an existing file with the target file name
128 (either -O or -o), a number should be appended (and increased if already
129 existing). So that index.html becomes first index.html.1 and then
130 index.html.2 etc. Jeff Pohlmeyer suggested.
131
Daniel Stenberg3e049a92001-11-13 09:06:32 +0000132 * "curl ftp://site.com/*.txt"
Daniel Stenberge60e7412001-11-02 12:51:18 +0000133
Daniel Stenbergd095b202003-10-17 12:37:15 +0000134 * The client could be told to use maximum N simultaneous transfers and then
135 just make sure that happens. It should of course not make more than one
136 connection to the same remote host. This would require the client to use
137 the multi interface.
Daniel Stenbergd12fd892001-12-06 14:40:16 +0000138
Daniel Stenberg5c4b4222002-02-18 10:51:28 +0000139 * Extending the capabilities of the multipart formposting. How about leaving
140 the ';type=foo' syntax as it is and adding an extra tag (headers) which
141 works like this: curl -F "coolfiles=@fil1.txt;headers=@fil1.hdr" where
142 fil1.hdr contains extra headers like
143
144 Content-Type: text/plain; charset=KOI8-R"
145 Content-Transfer-Encoding: base64
146 X-User-Comment: Please don't use browser specific HTML code
147
148 which should overwrite the program reasonable defaults (plain/text,
149 8bit...) (Idea brough to us by kromJx)
150
Daniel Stenberg391a37e2003-12-08 13:48:23 +0000151 * --data-encode that URL encodes the data before posting
152 http://curl.haxx.se/mail/archive-2003-11/0091.html (Kevin Roth suggested)
153
Daniel Stenberge60e7412001-11-02 12:51:18 +0000154 TEST SUITE
155
Daniel Stenberg96b71312003-03-15 15:08:55 +0000156 * If perl wasn't found by the configure script, don't attempt to run the
157 tests but explain something nice why it doesn't.
158
Daniel Stenberge60e7412001-11-02 12:51:18 +0000159 * Extend the test suite to include more protocols. The telnet could just do
160 ftp or http operations (for which we have test servers).
161
162 * Make the test suite work on more platforms. OpenBSD and Mac OS. Remove
163 fork()s and it should become even more portable.
164
165 * Introduce a test suite that tests libcurl better and more explicitly.
Daniel Stenberg83a46382003-03-10 20:46:54 +0000166
167NEXT MAJOR RELEASE
168
169 * curl_easy_cleanup() returns void, but curl_multi_cleanup() returns a
170 CURLMcode. These should be changed to be the same.
171
172 * curl_formparse() should be removed