aboutsummaryrefslogtreecommitdiff
path: root/docs/TODO
diff options
context:
space:
mode:
Diffstat (limited to 'docs/TODO')
-rw-r--r--docs/TODO25
1 files changed, 24 insertions, 1 deletions
diff --git a/docs/TODO b/docs/TODO
index f487f88aa..162944360 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -122,6 +122,7 @@
13.8 Support DANE
13.9 TLS record padding
13.10 Support Authority Information Access certificate extension (AIA)
+ 13.11 Some TLS options are not offered for HTTPS proxies
13.12 Reduce CA certificate bundle reparsing
13.13 Make sure we forbid TLS 1.3 post-handshake authentication
13.14 Support the clienthello extension
@@ -195,6 +196,9 @@
21. MQTT
21.1 Support rate-limiting
+ 22. TFTP
+ 22.1 TFTP doesn't convert LF to CRLF for mode=netascii
+
==============================================================================
1. libcurl
@@ -884,6 +888,14 @@
See https://github.com/curl/curl/issues/2793
+13.11 Some TLS options are not offered for HTTPS proxies
+
+ Some TLS related options to the command line tool and libcurl are only
+ provided for the server and not for HTTPS proxies. --proxy-tls-max,
+ --proxy-tlsv1.3, --proxy-curves and a few more.a
+
+ https://github.com/curl/curl/issues/12286
+
13.12 Reduce CA certificate bundle reparsing
When using the OpenSSL backend, curl will load and reparse the CA bundle at
@@ -1104,7 +1116,7 @@
slow, potentially with a (random) wait between transfers. There is also a
proposed set of standard HTTP headers to let servers let the client adapt to
its rate limits:
- https://www.ietf.org/id/draft-polli-ratelimit-headers-02.html
+ https://datatracker.ietf.org/doc/draft-ietf-httpapi-ratelimit-headers/
See https://github.com/curl/curl/issues/5406
@@ -1383,3 +1395,14 @@
The rate-limiting logic is done in the PERFORMING state in multi.c but MQTT
is not (yet) implemented to use that.
+
+22. TFTP
+
+22.1 TFTP doesn't convert LF to CRLF for mode=netascii
+
+ RFC 3617 defines that an TFTP transfer can be done using "netascii"
+ mode. curl does not support extracting that mode from the URL nor does it treat
+ such transfers specifically. It should probably do LF to CRLF translations
+ for them.
+
+ See https://github.com/curl/curl/issues/12655