diff options
author | Loïc Hoguin <[email protected]> | 2013-12-02 16:04:20 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-12-02 16:04:20 +0100 |
commit | 26058faee650b00eb4a9356db77402e0482b48cd (patch) | |
tree | b11c0571ec937e658d991f180d1346ab2218814a | |
parent | ab98342afe28ab2295c58ae953436803d8ae771c (diff) | |
parent | d139b6f11019da67c609df5b5688d701b35e62a9 (diff) | |
download | cowboy-26058faee650b00eb4a9356db77402e0482b48cd.tar.gz cowboy-26058faee650b00eb4a9356db77402e0482b48cd.tar.bz2 cowboy-26058faee650b00eb4a9356db77402e0482b48cd.zip |
Merge branch 'master' of git://github.com/KlausTrainer/cowboy
-rw-r--r-- | manual/cowboy_app.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/manual/cowboy_app.md b/manual/cowboy_app.md index 9fe316d..2a086de 100644 --- a/manual/cowboy_app.md +++ b/manual/cowboy_app.md @@ -7,8 +7,9 @@ Dependencies ------------ The `cowboy` application uses the Erlang applications `ranch` -for listening and accepting TCP connections, and `crypto` -for establishing Websocket connections. These dependencies must +for listening and accepting TCP connections, `crypto` for +establishing Websocket connections, and `cowlib` for parsing and +building messages for Web protocols. These dependencies must be loaded for the `cowboy` application to work. In an embedded environment this means that they need to be started with the `application:start/{1,2}` function before the `cowboy` |