summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-03-11 14:10:20 +0100
committerDaniel Stenberg <daniel@haxx.se>2014-03-11 14:10:20 +0100
commit2465ee757384855dce2b1787a9636141f3199c2a (patch)
treef771c652b91fca39065840918afb7e664a09574e
parent9787b8e9d43b9b640cba3626ff6aa09cd3ebc9b7 (diff)
downloadgnurl-2465ee757384855dce2b1787a9636141f3199c2a.tar.gz
gnurl-2465ee757384855dce2b1787a9636141f3199c2a.tar.bz2
gnurl-2465ee757384855dce2b1787a9636141f3199c2a.zip
TODO: remove http2, we now have it
-rw-r--r--docs/TODO22
1 files changed, 6 insertions, 16 deletions
diff --git a/docs/TODO b/docs/TODO
index 081dc27a8..2b7ac96d2 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -38,7 +38,7 @@
5.1 Better persistency for HTTP 1.0
5.2 support FF3 sqlite cookie files
5.3 Rearrange request header order
- 5.4 HTTP2/SPDY
+ 5.4 SPDY
5.5 auth= in URLs
6. TELNET
@@ -272,23 +272,13 @@
headers use a default value so only headers that need to be moved have to be
specified.
-5.4 HTTP2/SPDY
+5.4 SPDY
- The first drafts for HTTP2 have been published
- (http://tools.ietf.org/html/draft-ietf-httpbis-http2-03) and is so far based
- on SPDY (http://www.chromium.org/spdy) designs and experiences. Chances are
- it will end up in that style. Chrome and Firefox already support SPDY and
- lots of web services do.
+ Chrome and Firefox already support SPDY and lots of web services do. There's
+ a library for us to use for this (spdylay) that has a similar API and the
+ same author as nghttp2.
- It would make sense to implement SPDY support now and later transition into
- or add HTTP2 support as well.
-
- We should base or HTTP2/SPDY work on a 3rd party library for the protocol
- fiddling. The Spindy library (http://spindly.haxx.se/) was an attempt to make
- such a library with an API suitable for use by libcurl but that effort has
- more or less stalled. spdylay (https://github.com/tatsuhiro-t/spdylay) may
- be a better option, either used directly or wrapped with a more spindly-like
- API.
+ spdylay: https://github.com/tatsuhiro-t/spdylay
5.5 auth= in URLs