aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/guide/listeners.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/guide/listeners.asciidoc')
-rw-r--r--doc/src/guide/listeners.asciidoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/guide/listeners.asciidoc b/doc/src/guide/listeners.asciidoc
index 6e2dd19..0aee43c 100644
--- a/doc/src/guide/listeners.asciidoc
+++ b/doc/src/guide/listeners.asciidoc
@@ -200,7 +200,7 @@ overloaded and ensuring all the connections are handled optimally.
[source,erlang]
{ok, _} = ranch:start_listener(tcp_echo,
- ranch_tcp, [{port, 5555}, {max_connections, 100}],
+ ranch_tcp, #{socket_opts => [{port, 5555}], max_connections => 100},
echo_protocol, []
).
@@ -210,7 +210,7 @@ You can disable this limit by setting its value to the atom `infinity`.
[source,erlang]
{ok, _} = ranch:start_listener(tcp_echo,
- ranch_tcp, [{port, 5555}, {max_connections, infinity}],
+ ranch_tcp, #{socket_opts => [{port, 5555}], max_connections => infinity},
echo_protocol, []
).