diff options
Diffstat (limited to 'examples/tcp_reverse')
-rw-r--r-- | examples/tcp_reverse/src/tcp_reverse_app.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/tcp_reverse/src/tcp_reverse_app.erl b/examples/tcp_reverse/src/tcp_reverse_app.erl index 1138d4a..c97f6ee 100644 --- a/examples/tcp_reverse/src/tcp_reverse_app.erl +++ b/examples/tcp_reverse/src/tcp_reverse_app.erl @@ -12,7 +12,8 @@ start(_Type, _Args) -> {ok, _} = ranch:start_listener(tcp_reverse, - ranch_tcp, [{port, 5555}], reverse_protocol, []), + ranch_tcp, #{socket_opts => [{port, 5555}]}, + reverse_protocol, []), tcp_reverse_sup:start_link(). stop(_State) -> |