Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-02 | Fix cowboy:start_http/https/spdy typespecs | Radosław Szymczyszyn | |
2013-05-30 | Add experimental and incomplete SPDY support | Loïc Hoguin | |
The SPDY connection processes are also supervisors. Missing: * sendfile support * request body reading support | |||
2013-05-16 | Use the ranch_ssl:opts() type in cowboy:start_https/4 spec | Loïc Hoguin | |
2013-05-16 | Use the ranch_tcp:opts() type in cowboy:start_http/4 spec | Loïc Hoguin | |
2013-05-16 | Use the type ranch:ref() instead of any() where applicable | Loïc Hoguin | |
2013-05-16 | Add cowboy_protocol:opts() type | Loïc Hoguin | |
Should improve the detection of wrong protocol options. | |||
2013-05-16 | Move cowboy_protocol:onresponse_fun() to cowboy:onresponse_fun() | Loïc Hoguin | |
2013-05-16 | Move cowboy_protocol:onrequest_fun() to cowboy:onrequest_fun() | Loïc Hoguin | |
2013-05-16 | Move cowboy_http:status() to cowboy:http_status() | Loïc Hoguin | |
2013-05-16 | Move cowboy_http:headers() to cowboy:http_headers() | Loïc Hoguin | |
2013-05-16 | Move cowboy_http:version() to cowboy:http_version() | Loïc Hoguin | |
2013-02-20 | Add cowboy:set_env/3 | Loïc Hoguin | |
2013-01-04 | Hello 2013 | Loïc Hoguin | |
2012-08-27 | Rename cowboy_http_protocol to cowboy_protocol | Loïc Hoguin | |
2012-08-27 | Switch to Ranch for connection handling | Loïc Hoguin | |
This is the first of many API incompatible changes. You have been warned. | |||
2012-05-23 | Update version to 0.6.00.6.0 | Loïc Hoguin | |
Also update the CHANGELOG and copyright years. | |||
2012-05-21 | Small updates to the ROADMAP and doc comments | Loïc Hoguin | |
2012-01-31 | Add cowboy:get_protocol_options/1 and cowboy_set_protocol_options/2 | Loïc Hoguin | |
This allows any application to upgrade the protocol options without having to restart the listener. This is most useful to update the dispatch list of HTTP servers, for example. The upgrade is done at the acceptor level, meaning only new connections receive the new protocol options. | |||
2011-12-15 | Add cowboy:accept_ack/1 for a cleaner handling of the shoot message | Loïc Hoguin | |
2011-10-10 | Add cowboy:child_spec/6 | Jesper Louis Andersen | |
This new exported function returns a Child Spec suitable for embedding cowboy in another applications supervisor structure. While here, implement `start_listener/6` in terms of it. | |||
2011-08-10 | Introduce cowboy_listener for managing a listener | Loïc Hoguin | |
Currently only supports limiting the maximum number of connections by managing connection pools. | |||
2011-07-18 | Fail fast when a wrong type is given to API functions | Loïc Hoguin | |
Idea given by bfrog, fixes issue #34. | |||
2011-07-06 | Add documentation for the public interface. | Loïc Hoguin | |
This is probably not perfect yet but it should be better than nothing. We'll improve things with feedback received from the many users. | |||
2011-05-25 | Refresh the type specifications. | Loïc Hoguin | |
Following discussions on #erlounge. Also fixes compilation in R14B03 and fixes a few underspecs dialyzer warnings. | |||
2011-04-03 | Don't ignore the return values in cowboy:stop_listener/1. | Loïc Hoguin | |
2011-04-03 | Make Cowboy an OTP application again, properly this time. | Loïc Hoguin | |
As requested by many people on IRC Cowboy is now a proper OTP application to support soft code upgrades. It should also be easier to start and stop listeners now using cowboy:start_listener/6 and cowboy:stop_listener/1. |