aboutsummaryrefslogtreecommitdiff
path: root/docs/TODO
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-01-12 00:03:05 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-01-12 00:03:05 +0100
commit3ea77f6addd1c49e2ea7e6dcbc5d1e39f119e088 (patch)
treeef3b70c6b5e8e0e553a571842f5da4c038ea80f1 /docs/TODO
parent13b6d3b7dd9e288daa7d2525b0c39cd5c40ef70b (diff)
TODO: "Try to URL encode given URL"
Closes #514
Diffstat (limited to 'docs/TODO')
-rw-r--r--docs/TODO9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/TODO b/docs/TODO
index d67595bd3..f06e71355 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -31,6 +31,7 @@
1.13 Add CURLOPT_MAIL_CLIENT option
1.14 Typesafe curl_easy_setopt()
1.15 TCP Fast Open
+ 1.16 Try to URL encode given URL
2. libcurl - multi interface
2.1 More non-blocking
@@ -283,6 +284,14 @@
RFC 7413 defines how to include data already in the TCP SYN handshake to
reduce latency.
+1.16 Try to URL encode given URL
+
+ Given a URL that for example contains spaces, libcurl could have an option
+ that would try somewhat harder than it does now and convert spaces to %20 and
+ perhaps URL encoded byte values over 128 etc (basically do what the redirect
+ following code already does).
+
+ https://github.com/bagder/curl/issues/514
2. libcurl - multi interface