0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00
Small, fast, modern HTTP server for Erlang/OTP.
Find a file
James Fish f0cc2d01e6 Fix decoding of chunked body.
Previously cowboy_http:te_chunked/2 would enter an incorrect state if
it tried to parse an incomplete chunk when the length was known from the
partial chunk.

Previosuly cowboy_http:te_chunked/2 expected the trailing "\r\n" to
always be present if chunk body was present in the buffer. This is not
guaranteed and so this commit accommodates that situation.
2013-07-05 22:45:18 +01:00
doc Add a simple README in the doc folder for guidance 2013-03-02 20:16:06 +01:00
examples Update Ranch to 0.8.4 2013-06-20 16:01:53 +02:00
guide Greatly improve the guide introduction 2013-06-27 00:02:12 +02:00
manual Add asn1 to the list of applications to be started for SSL 2013-06-20 16:01:58 +02:00
src Fix decoding of chunked body. 2013-07-05 22:45:18 +01:00
test Fix decoding of chunked body. 2013-07-05 22:45:18 +01:00
.gitignore Add .cowboy.plt to the gitignore 2012-04-29 01:20:05 +02:00
AUTHORS Update AUTHORS 2013-06-20 16:01:58 +02:00
CHANGELOG.md Update CHANGELOG 2013-06-20 16:01:58 +02:00
CONTRIBUTING.md Add more details on how to report bugs and vulnerabilities 2013-02-27 18:25:45 +01:00
erlang.mk Update erlang.mk 2013-06-19 16:35:51 +02:00
LICENSE Update LICENSE date 2013-04-30 18:51:18 +02:00
Makefile Update Ranch to 0.8.4 2013-06-20 16:01:53 +02:00
README.md Add Cowboy manual to README 2013-05-17 17:16:43 +02:00
rebar.config Update Ranch to 0.8.4 2013-06-20 16:01:53 +02:00
ROADMAP.md Update ROADMAP 2013-05-24 14:59:30 +02:00

Cowboy

Cowboy is a small, fast and modular HTTP server written in Erlang.

Goals

Cowboy aims to provide a complete HTTP stack in a small code base. It is optimized for low latency and low memory usage, in parts because it uses binary strings.

Cowboy provides routing capabilities, selectively dispatching requests to handlers written in Erlang.

Because it uses Ranch for managing connections, Cowboy can easily be embedded in any other application.

No parameterized module. No process dictionary. Clean Erlang code.

Getting Started

Support