Browse Source

Fix opts in listeners.asciidoc

vdimir 4 years ago
parent
commit
3e914c44a4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      doc/src/guide/listeners.asciidoc

+ 2 - 2
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, []
 ).