2014-06-19 08:16:14 -04:00
|
|
|
|
curl the next few years - perhaps
|
2014-09-10 18:15:12 -04:00
|
|
|
|
=================================
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
|
|
|
|
Roadmap of things Daniel Stenberg and Steve Holme want to work on next. It is
|
|
|
|
|
intended to serve as a guideline for others for information, feedback and
|
|
|
|
|
possible participation.
|
|
|
|
|
|
2016-07-19 17:10:39 -04:00
|
|
|
|
QUIC
|
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
The standardization process of QUIC has been taken to the IETF and can be
|
|
|
|
|
followed on the [IETF QUIC Mailing
|
|
|
|
|
list](https://www.ietf.org/mailman/listinfo/quic). I'd like us to get on the
|
|
|
|
|
bandwagon. Ideally, this would be done with a separate library/project to
|
|
|
|
|
handle the binary/framing layer in a similar fashion to how HTTP/2 is
|
|
|
|
|
implemented. This, to allow other projects to benefit from the work and to
|
|
|
|
|
thus broaden the interest and chance of others to participate.
|
|
|
|
|
|
2016-02-26 07:02:34 -05:00
|
|
|
|
HTTP cookies
|
|
|
|
|
------------
|
|
|
|
|
|
|
|
|
|
Two cookie drafts have been adopted by the httpwg in IETF and we should
|
|
|
|
|
support them as the popular browsers will as well:
|
|
|
|
|
|
|
|
|
|
[Deprecate modification of 'secure' cookies from non-secure
|
|
|
|
|
origins](https://tools.ietf.org/html/draft-ietf-httpbis-cookie-alone-00)
|
|
|
|
|
|
|
|
|
|
[Cookie Prefixes](https://tools.ietf.org/html/draft-ietf-httpbis-cookie-prefixes-00)
|
|
|
|
|
|
|
|
|
|
[Firefox bug report about secure cookies](https://bugzilla.mozilla.org/show_bug.cgi?id=976073)
|
|
|
|
|
|
2015-04-24 04:49:31 -04:00
|
|
|
|
SRV records
|
|
|
|
|
-----------
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
2015-04-24 04:49:31 -04:00
|
|
|
|
How to find services for specific domains/hosts.
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
2015-04-24 04:49:31 -04:00
|
|
|
|
curl_formadd()
|
|
|
|
|
--------------
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
2015-04-24 04:49:31 -04:00
|
|
|
|
make sure there's an easy handle passed in to `curl_formadd()`,
|
|
|
|
|
`curl_formget()` and `curl_formfree()` by adding replacement functions and
|
2017-01-07 17:45:48 -05:00
|
|
|
|
deprecating the old ones to allow custom mallocs and more.
|
|
|
|
|
|
|
|
|
|
Or perhaps even better: revamp the formpost API completely while we're at it
|
|
|
|
|
and making something that is easier to use and understand:
|
|
|
|
|
|
|
|
|
|
https://github.com/curl/curl/wiki/formpost-API-redesigned
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
2016-04-08 12:04:25 -04:00
|
|
|
|
Third-party SASL
|
2015-04-24 04:49:31 -04:00
|
|
|
|
----------------
|
|
|
|
|
|
2016-04-08 12:04:25 -04:00
|
|
|
|
Add support for third-party SASL libraries such as Cyrus SASL.
|
2015-04-24 04:49:31 -04:00
|
|
|
|
|
|
|
|
|
SASL authentication in LDAP
|
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
Simplify the SMTP email
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
Simplify the SMTP email interface so that programmers don't have to
|
|
|
|
|
construct the body of an email that contains all the headers, alternative
|
|
|
|
|
content, images and attachments - maintain raw interface so that
|
|
|
|
|
programmers that want to do this can
|
|
|
|
|
|
|
|
|
|
email capabilities
|
|
|
|
|
------------------
|
|
|
|
|
|
|
|
|
|
Allow the email protocols to return the capabilities before
|
|
|
|
|
authenticating. This will allow an application to decide on the best
|
|
|
|
|
authentication mechanism
|
|
|
|
|
|
|
|
|
|
Win32 pthreads
|
|
|
|
|
--------------
|
|
|
|
|
|
|
|
|
|
Allow Windows threading model to be replaced by Win32 pthreads port
|
|
|
|
|
|
|
|
|
|
dynamic buffer size
|
|
|
|
|
-------------------
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
2015-04-24 04:49:31 -04:00
|
|
|
|
Implement a dynamic buffer size to allow SFTP to use much larger buffers and
|
|
|
|
|
possibly allow the size to be customizable by applications. Use less memory
|
|
|
|
|
when handles are not in use?
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
|
|
|
|
New stuff - curl
|
2014-09-10 18:15:12 -04:00
|
|
|
|
----------------
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
|
|
|
|
1. Embed a language interpreter (lua?). For that middle ground where curl
|
|
|
|
|
isn’t enough and a libcurl binding feels “too much”. Build-time conditional
|
|
|
|
|
of course.
|
|
|
|
|
|
|
|
|
|
2. Simplify the SMTP command line so that the headers and multi-part content
|
|
|
|
|
don't have to be constructed before calling curl
|
|
|
|
|
|
|
|
|
|
Improve
|
2014-09-10 18:15:12 -04:00
|
|
|
|
-------
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
|
|
|
|
1. build for windows (considered hard by many users)
|
|
|
|
|
|
|
|
|
|
2. curl -h output (considered overwhelming to users)
|
|
|
|
|
|
2017-01-07 17:45:48 -05:00
|
|
|
|
3. we have > 200 command line options, is there a way to redo things to
|
2014-06-19 08:16:14 -04:00
|
|
|
|
simplify or improve the situation as we are likely to keep adding
|
|
|
|
|
features/options in the future too
|
|
|
|
|
|
2017-01-07 17:45:48 -05:00
|
|
|
|
4. authentication framework (consider merging HTTP and SASL authentication to
|
2014-06-19 08:16:14 -04:00
|
|
|
|
give one API for protocols to call)
|
|
|
|
|
|
2017-01-07 17:45:48 -05:00
|
|
|
|
5. Perform some of the clean up from the TODO document, removing old
|
2014-06-19 08:16:14 -04:00
|
|
|
|
definitions and such like that are currently earmarked to be removed years
|
|
|
|
|
ago
|
|
|
|
|
|
|
|
|
|
Remove
|
2014-09-10 18:15:12 -04:00
|
|
|
|
------
|
2014-06-19 08:16:14 -04:00
|
|
|
|
|
2015-02-20 17:31:59 -05:00
|
|
|
|
1. makefile.vc files as there is no point in maintaining two sets of Windows
|
2014-06-19 08:16:14 -04:00
|
|
|
|
makefiles. Note: These are currently being used by the Windows autobuilds
|