aboutsummaryrefslogtreecommitdiff
path: root/docs/ROADMAP.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ROADMAP.md')
-rw-r--r--docs/ROADMAP.md65
1 files changed, 34 insertions, 31 deletions
diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md
index 1d47682bf..10e7effee 100644
--- a/docs/ROADMAP.md
+++ b/docs/ROADMAP.md
@@ -5,19 +5,10 @@ Roadmap of things Daniel Stenberg wants to work on next. It is intended to
serve as a guideline for others for information, feedback and possible
participation.
-HSTS
-----
-
- Complete and merge [the existing PR](https://github.com/curl/curl/pull/2682).
-
- Loading a huge preload file is probably not too interesting to most people,
- but using a custom file and reacting to HSTS response header probably are
- good features.
+HTTP/3
+------
-DNS-over-TLS
-------------
-
- Similar to DNS-over-HTTPS. Could share quite a lot of generic code.
+ See the [QUIC and HTTP/3 wiki page](https://github.com/curl/curl/wiki/QUIC).
ESNI (Encrypted SNI)
--------------------
@@ -25,32 +16,44 @@ ESNI (Encrypted SNI)
See Daniel's post on [Support of Encrypted
SNI](https://curl.haxx.se/mail/lib-2019-03/0000.html) on the mailing list.
- Initial work exists in https://github.com/curl/curl/pull/4011
+HSTS
+----
-tiny-curl
----------
+Complete and merge [the existing PR](https://github.com/curl/curl/pull/2682).
- There's no immediate action for this but users seem keen on being able to
- building custom minimized versions of libcurl for their products. Make sure
- new features that are "niche" can still be disabled at build-time.
+Parallel transfers for the curl tool
+------------------------------------
-MQTT
-----
+This will require several new command line options to enable and control.
+
+ 1. switch to creating a list of all the transfers first before any transfer
+ is done
+ 2. make the transfers using the multi interface
+ 3. optionally fire up more transfers before the previous has completed
+
+Option to refuse HTTPS => HTTP redirects
+----------------------------------------
+
+Possibly as a new bit to `CURLOPT_FOLLOWLOCATION` ?
+
+Option to let CURLOPT_CUSTOMREQUEST be overridden on redirect
+-------------------------------------------------------------
+
+(This is a common problem for people using `-X` and `-L` together.)
- Support receiving and sending MQTT messages. Initial work exists in
- https://github.com/curl/curl/pull/3514
+Possibly as a new bit to `CURLOPT_FOLLOWLOCATION` ?
Hardcode “localhost”
--------------------
- No need to resolve it. Avoid a risk where this is resolved over the network
- and actually responds with something else than a local address. Some
- operating systems already do this. Also:
- https://tools.ietf.org/html/draft-ietf-dnsop-let-localhost-be-localhost-02
+No need to resolve it. Avoid a risk where this is resolved over the network
+and actually responds with something else than a local address. Some operating
+systems already do this. Also:
+https://tools.ietf.org/html/draft-ietf-dnsop-let-localhost-be-localhost-02
-"menu config"-style build feature selection
--------------------------------------------
+Consider "menu config"-style build feature selection
+----------------------------------------------------
- Allow easier building of custom libcurl versions with only a selected feature
- where the available features are easily browsable and toggle-able ON/OFF or
- similar.
+Allow easier building of custom libcurl versions with only a selected feature
+where the available features are easily browsable and toggle-able ON/OFF or
+similar.