Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-06 | Update Ranch to 0.6.2 | Loïc Hoguin | |
2013-03-06 | Merge branch 'check-body-length' of git://github.com/rambocoder/cowboy | Loïc Hoguin | |
2013-03-06 | Stop using binary:match in cowboy_protocol | Loïc Hoguin | |
It's been found slower than a custom equivalent to what we were using it for. As this is the critical path we prefer the custom solution. | |||
2013-03-06 | Check the length before reading the body in body/1 and body_qs/1 | rambocoder | |
2013-03-05 | Make streamed chunk size configurable | Loïc Hoguin | |
Defaults to a maximum of 1000000 bytes. Also standardize the te_identity and te_chunked decoding functions. Now they both try to read as much as possible (up to the limit), making body reading much faster when not using chunked encoding. | |||
2013-03-05 | Handle identity transfer-encoding when determining body length | Loïc Hoguin | |
2013-03-03 | Merge branch 'param_all' of git://github.com/nevar/cowboy | Loïc Hoguin | |
2013-03-03 | Add '*' matcher for parameters | Slava Yurin | |
For get_type_provided: '*' will be match any parameters of media-range in "accept" header. If '*' matched, then '*' is replaced by the matching parameters. If Accept header is missing and '*' using, then in media_type in parameters will be '*' and reply content-type will be without any parameters. For content_types_accepted: '*' will be match any parameters in "content-type" header. | |||
2013-03-02 | Allow overriding ERLC_OPTS | Loïc Hoguin | |
2013-03-02 | Describe arguments of the HTTP handler callbacks | Loïc Hoguin | |
2013-03-02 | Explain what are listeners and acceptors in Getting Started | Loïc Hoguin | |
2013-03-02 | Add a simple README in the doc folder for guidance | Loïc Hoguin | |
2013-03-02 | Disable cover in tests by default | Loïc Hoguin | |
2013-03-02 | Run tests in parallel | Loïc Hoguin | |
2013-03-02 | Disable the shell for ct_run | Loïc Hoguin | |
2013-03-02 | Use random ports for tests | Loïc Hoguin | |
2013-03-02 | Add a recommendation about static files in production to the guide | Loïc Hoguin | |
2013-03-02 | Merge branch 'onresponse_example' of git://github.com/acammack/cowboy | Loïc Hoguin | |
2013-03-01 | Add an example of onresponse hooks | Adam Cammack | |
Also fix the guide entry on hooks. | |||
2013-03-02 | Fix cowboy_router types | Loïc Hoguin | |
2013-03-01 | Merge branch 'ssl_example' of git://github.com/acammack/cowboy | Loïc Hoguin | |
2013-03-01 | Add an SSL example | Adam Cammack | |
2013-03-01 | Fix an error in the guide introduction | Loïc Hoguin | |
Reported by Joe Armstrong. | |||
2013-03-01 | Make path check cross-platform and generally safer | Loïc Hoguin | |
2013-02-27 | Optimize cowboy_static:rest_init/2 | Loïc Hoguin | |
2013-02-27 | Remove extraneous newlines in cowboy_static | Loïc Hoguin | |
2013-02-27 | Add a Supported platforms section to the guide introduction | Loïc Hoguin | |
2013-02-27 | Add more details on how to report bugs and vulnerabilities | Loïc Hoguin | |
2013-02-27 | Fix an incorrect comment in cowboy_router | Loïc Hoguin | |
2013-02-22 | Merge branch 'fix-loop-hibernate' of git://github.com/fishcakez/cowboy | Loïc Hoguin | |
2013-02-22 | Fix to prevent loop handler awakening immediately after response sent | James Fish | |
If a loop handler sent a response (e.g. cowboy_req:chunked_reply/2,/3) and then returns {loop, Req, HandlerState, hibernate} it would have a {cowboy_req, resp_sent} message in its message queue. This message would cause the process to immediately awaken, so it is flushed before hibernation. | |||
2013-02-22 | Update to 0.8.10.8.1 | Loïc Hoguin | |
2013-02-22 | Update CHANGELOG | Loïc Hoguin | |
2013-02-22 | Update AUTHORS | Loïc Hoguin | |
2013-02-22 | Merge branch 'fix-warnings' of git://github.com/Egobrain/cowboy | Loïc Hoguin | |
2013-02-21 | Added warn compile options. Fixed compile warnings. | Egobrain | |
2013-02-20 | Merge branch 'fix_ranch_vsn' of git://github.com/nevar/cowboy | Loïc Hoguin | |
2013-02-20 | Add cowboy:set_env/3 | Loïc Hoguin | |
2013-02-20 | Compile cowboy_sub_protocol behaviour before modules using it | Loïc Hoguin | |
2013-02-18 | Fix ranch version in Makefile | Slava Yurin | |
2013-02-17 | Merge branch 'fix-handler-spec' of git://github.com/fishcakez/cowboy | Loïc Hoguin | |
2013-02-17 | Merge branch 'sub_protocol-behaviour' of git://github.com/fishcakez/cowboy | Loïc Hoguin | |
2013-02-17 | Fix {suspend, ...} specs to use atom() for function name | James Fish | |
2013-02-16 | Add sub protocol behaviour | James Fish | |
2013-02-16 | Merge branch 'fix/loop_socket_passive' of git://github.com/keynslug/cowboy | Loïc Hoguin | |
2013-02-16 | Merge branch 'eventsource_example' of git://github.com/acammack/cowboy | Loïc Hoguin | |
2013-02-16 | Merge branch 'web_server_example' of git://github.com/acammack/cowboy | Loïc Hoguin | |
2013-02-16 | Merge branch 'pastebin_example' of git://github.com/acammack/cowboy | Loïc Hoguin | |
2013-02-16 | Add EventSource example | Adam Cammack | |
Port from extend/cowboy_examples. | |||
2013-02-16 | Add a web server example | Adam Cammack | |
Explore re-routing in middleware. |