From d1d91be27bbd617b82cb337f7fd1e2393c261bc6 Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 27 Apr 2009 16:49:53 +0200 Subject: [PATCH] add list of features to readme --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 711de51..4e3b8d6 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,22 @@ applications. It does not make any allocations, it does not buffer data, and it can be interrupted at anytime. It only requires about 120 bytes of data per message stream (in a web server that is per connection). +Features: + + * No dependencies + * Parses both requests and responses. + * Handles keep-alive streams. + * Decodes chunked encoding. + * Extracts the following data from a message + * header fields and values + * content-length + * request method + * response status code + * transfer-encoding + * http version + * request path, query string, fragment + * message body + Usage -----