diff options
author | j.uhlig <[email protected]> | 2018-05-03 13:22:30 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-05-07 13:11:16 +0200 |
commit | 301f582b97f82e7f7dc2d41bb575671bcc30215e (patch) | |
tree | d9cff0b381bb7189eb4ebee27438927d82e2b2ff /examples/tcp_reverse/README.md | |
parent | 7006c50c3ed6c3cbcb24e9e88a76ebd1aaf3a5f8 (diff) | |
download | ranch-301f582b97f82e7f7dc2d41bb575671bcc30215e.tar.gz ranch-301f582b97f82e7f7dc2d41bb575671bcc30215e.tar.bz2 ranch-301f582b97f82e7f7dc2d41bb575671bcc30215e.zip |
Replace gen_server with gen_statem in examples
Diffstat (limited to 'examples/tcp_reverse/README.md')
-rw-r--r-- | examples/tcp_reverse/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tcp_reverse/README.md b/examples/tcp_reverse/README.md index 745ad2c..d4ab1de 100644 --- a/examples/tcp_reverse/README.md +++ b/examples/tcp_reverse/README.md @@ -1,11 +1,11 @@ Ranch TCP reverse example ========================= -This example uses a `gen_server` to handle a protocol to revese input. +This example uses a `gen_statem` to handle a protocol to revese input. See `reverse_protocol.erl` for the implementation. Documentation about this topic can be found in the guide: - http://ninenines.eu/docs/en/ranch/HEAD/guide/protocols/#using_gen_server + http://ninenines.eu/docs/en/ranch/HEAD/guide/protocols/#using_gen_statem To try this example, you need GNU `make` and `git` in your PATH. |