aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-04-09 23:25:56 +0300
committerLoïc Hoguin <[email protected]>2015-04-09 23:25:56 +0300
commit3c051509d6b211dc4b369ba716b08d24135f29f2 (patch)
treeebfb7e395f8a8c8b2b6b97bf4c432526021b532b /doc/src/guide
parenta738db07c2040461f0fd431f04ecf90b157ead5b (diff)
downloadgun-3c051509d6b211dc4b369ba716b08d24135f29f2.tar.gz
gun-3c051509d6b211dc4b369ba716b08d24135f29f2.tar.bz2
gun-3c051509d6b211dc4b369ba716b08d24135f29f2.zip
Remove outdated todos
Diffstat (limited to 'doc/src/guide')
-rw-r--r--doc/src/guide/http.asciidoc5
-rw-r--r--doc/src/guide/websocket.asciidoc2
2 files changed, 0 insertions, 7 deletions
diff --git a/doc/src/guide/http.asciidoc b/doc/src/guide/http.asciidoc
index 5a69fa1..465a4c5 100644
--- a/doc/src/guide/http.asciidoc
+++ b/doc/src/guide/http.asciidoc
@@ -132,11 +132,6 @@ know it in advance, although this is not required. If it
is not set, HTTP/1.1 will use the chunked transfer-encoding,
and SPDY will continue normally as it is chunked by design.
-@todo Stop relying on transfer encoding header in Gun
-
-@todo SPDY needs to remove invalid headers, and to detect
-a body if content-length is set
-
.POST "/organizations/ninenines" with delayed body
[source,erlang]
diff --git a/doc/src/guide/websocket.asciidoc b/doc/src/guide/websocket.asciidoc
index 011e457..23c5030 100644
--- a/doc/src/guide/websocket.asciidoc
+++ b/doc/src/guide/websocket.asciidoc
@@ -14,8 +14,6 @@ HTTP/1.1 connections can be upgraded to Websocket, so you might
need to restrict the protocol to HTTP/1.1 if you are planning
to use Websocket over TLS.
-@todo add option to disable specific protocols
-
You must use the `gun_ws:upgrade/{2,3}` function to upgrade
to Websocket. This function can be called anytime after connection,
so you can send HTTP requests before upgrading to Websocket.