aboutsummaryrefslogtreecommitdiffstats
path: root/ROADMAP.md
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-05-21 08:49:22 +0200
committerLoïc Hoguin <[email protected]>2012-05-21 08:49:22 +0200
commit8363e8995ad0b4f21b2a194c235ae7b92462af2e (patch)
treed75a4d0515d3df317c8ccafb710a23f94a7757d3 /ROADMAP.md
parent4f78be6da615384d092093ef128535f00146e6f7 (diff)
downloadcowboy-8363e8995ad0b4f21b2a194c235ae7b92462af2e.tar.gz
cowboy-8363e8995ad0b4f21b2a194c235ae7b92462af2e.tar.bz2
cowboy-8363e8995ad0b4f21b2a194c235ae7b92462af2e.zip
Small updates to the ROADMAP and doc comments
Diffstat (limited to 'ROADMAP.md')
-rw-r--r--ROADMAP.md40
1 files changed, 2 insertions, 38 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index a261caf..3daacb1 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -61,56 +61,20 @@ are not ordered.
Tools like curl expect a 100 Continue before sending a
request body by default.
-* Content-Encoding support.
-
- Cowboy should be able to send encoded content automatically.
- The default should be to encode, but the developer must be
- able to override this default either for the whole listener
- or just for a single reply.
-
-* Improve body reading API.
-
- We want to have various different things for reading the
- body. First, there should be raw functions for the different
- ways to read the body: basic, transfer encoded, multipart.
- Each should allow us to limit the size of what is read.
-
- On top of these functions there should be two more
- advanced functions: one would return the result of parsing
- a x-www-form-urlencoded body; the other would parse a
- multipart request, save files from the multipart data to
- a temporary location and return a proplist of values if any
- along with the files details. This behavior is similar to
- what is done automatically by PHP with its $_FILES array.
-
- The advanced functions are of course here for convenience
- only and it should be trivial to reimplement them directly
- in a Cowboy application if needed.
+* Convert the multipart code to stream_body.
* Complete the work on Websockets.
Now that the Autobahn test suite is available (make inttests),
we have a definite way to know whether Cowboy's implementation
of Websockets is right. The work can thus be completed. The
- remaining tasks are proper UTF8 handling and fragmentation.
+ remaining tasks are proper UTF8 handling.
* SPDY support.
While SPDY probably won't be added directly to Cowboy, work
has been started on making Cowboy use SPDY.
-* Hooks.
-
- Customizable hooks would allow the developer to extend Cowboy
- easily. Two kinds of hooks are needed: before dispatching the
- request, and before sending a reply.
-
- The first would allow us to apply site-wide functions like
- authentication or request logging and modify the Req if needed.
-
- The second is more interesting for response logging or to
- filter the replies, for example to send custom error pages.
-
* Transport upgrades.
Some protocols allow an upgrade from TCP to SSL without