libcurl: updated to 7.49.1
[tomato.git] / release / src / router / libcurl / docs / ROADMAP.md
blobd664403cf27c1b012b58ebf814ab78e0021e29c6
1 curl the next few years - perhaps
2 =================================
4 Roadmap of things Daniel Stenberg and Steve Holme want to work on next. It is
5 intended to serve as a guideline for others for information, feedback and
6 possible participation.
8 HTTP/2
9 ------
11 - test suite
13    Base this on existing nghttp2 server to start with to make functional
14    tests. Later on we can adopt that code or work with nghttp2 to provide ways
15    to have the http2 server respond with broken responses to make sure we deal
16    with that nicely as well.
18    To decide: if we need to bundle parts of the nghttp2 stuff that probably
19    won't be shipped by many distros.
21 HTTP cookies
22 ------------
24 Two cookie drafts have been adopted by the httpwg in IETF and we should
25 support them as the popular browsers will as well:
27 [Deprecate modification of 'secure' cookies from non-secure
28 origins](https://tools.ietf.org/html/draft-ietf-httpbis-cookie-alone-00)
30 [Cookie Prefixes](https://tools.ietf.org/html/draft-ietf-httpbis-cookie-prefixes-00)
32 [Firefox bug report about secure cookies](https://bugzilla.mozilla.org/show_bug.cgi?id=976073)
34 SRV records
35 -----------
37 How to find services for specific domains/hosts.
39 HTTPS to proxy
40 --------------
42 To avoid network traffic to/from the proxy getting snooped on. There's a git
43 branch in the public git repository for this that we need to make sure works
44 for all TLS backends and then merge!
46 curl_formadd()
47 --------------
49 make sure there's an easy handle passed in to `curl_formadd()`,
50 `curl_formget()` and `curl_formfree()` by adding replacement functions and
51 deprecating the old ones to allow custom mallocs and more
53 Third-party SASL
54 ----------------
56 Add support for third-party SASL libraries such as Cyrus SASL.
58 SASL authentication in LDAP
59 ---------------------------
61 ...
63 Simplify the SMTP email
64 -----------------------
66 Simplify the SMTP email interface so that programmers don't have to
67 construct the body of an email that contains all the headers, alternative
68 content, images and attachments - maintain raw interface so that
69 programmers that want to do this can
71 email capabilities
72 ------------------
74 Allow the email protocols to return the capabilities before
75 authenticating. This will allow an application to decide on the best
76 authentication mechanism
78 Win32 pthreads
79 --------------
81 Allow Windows threading model to be replaced by Win32 pthreads port
83 dynamic buffer size
84 -------------------
86 Implement a dynamic buffer size to allow SFTP to use much larger buffers and
87 possibly allow the size to be customizable by applications. Use less memory
88 when handles are not in use?
90 New stuff - curl
91 ----------------
93 1. Embed a language interpreter (lua?). For that middle ground where curl
94    isn’t enough and a libcurl binding feels “too much”. Build-time conditional
95    of course.
97 2. Simplify the SMTP command line so that the headers and multi-part content
98    don't have to be constructed before calling curl
100 Improve
101 -------
103 1. build for windows (considered hard by many users)
105 2. curl -h output (considered overwhelming to users)
107 3. we have > 170 command line options, is there a way to redo things to
108    simplify or improve the situation as we are likely to keep adding
109    features/options in the future too
111 4. docs (considered "bad" by users but how do we make it better?)
113   - split up curl.1
115 5. authentication framework (consider merging HTTP and SASL authentication to
116    give one API for protocols to call)
118 6. Perform some of the clean up from the TODO document, removing old
119    definitions and such like that are currently earmarked to be removed years
120    ago
122 Remove
123 ------
125 1. makefile.vc files as there is no point in maintaining two sets of Windows
126    makefiles. Note: These are currently being used by the Windows autobuilds