start_listener(Ref :: ranch_ref(), Transport :: module(), TransOpts :: ranch:opts(), Protocol :: module(), ProtoOpts :: any()) -> {ok, ListenerPid :: pid()} | {error, any()}
ranch:start_listener - Start a listener
start_listener(Ref :: ranch_ref(), Transport :: module(), TransOpts :: ranch:opts(), Protocol :: module(), ProtoOpts :: any()) -> {ok, ListenerPid :: pid()} | {error, any()}
Start a listener.
A listener is a set of processes that accepts and manages connections using the given transport and protocol modules.
The listener name is used to refer to this listener in future calls, for example when stopping it or when updating the configuration.
It can be any Erlang term. An atom is generally good enough, for example api
, my_app_clear
or my_app_tls
.
The transport module that will be used by Ranch to accept connections and that will be passed to the protocol module along with the socket.
The interface of the transport module is documented in the ranch_transport(3) manual.
Transport options include the Ranch-specific options and the socket options. The listener's port number must be defined in the socket options.
Socket options may be given directly if there are no Ranch-specific options.
The available options for the built-in Ranch transports are documented in the ranch_tcp(3) and ranch_ssl(3) manuals.
The protocol module that will be used by Ranch after the connection has been accepted.
The interface of the protocol module is documented in the ranch_protocol(3) manual.
The protocol options given when calling the protocol module. Please consult the documentation of the protocol module you are using for more details.
An ok tuple is returned on success. It contains the pid of the top-level supervisor for the listener.
An error tuple is returned on error. The error reason may be any Erlang term.
A common error is eaddrinuse
. It indicates that the port configured for Ranch is already in use.
TransOpts
argument must no longer contain Ranch-specific options if given as a list. Use a map.
NumAcceptors
argument was moved to the transport options.
{ok, _} = ranch:start_listener(example, ranch_tcp, [{port, 8080}], cowboy_http2, #{} ).
{ok, _} = ranch:start_listener(example, ranch_tcp, #{ num_acceptors => 75, socket_opts => [{port, 8080}] }, cowboy_http2, #{} ).
Ref = example, {ok, _} = ranch:start_listener(Ref, ranch_tcp, #{}, cowboy_http2, #{} ), Port = ranch:get_port(Ref).
ranch:stop_listener(3), ranch:child_spec(3), ranch(3), ranch_tcp(3), ranch_ssl(3), ranch_transport(3), ranch_protocol(3)
Donate to Loïc Hoguin because his work on Cowboy, Ranch, Gun and Erlang.mk is fantastic:
Recurring payment options are also available via GitHub Sponsors. These funds are used to cover the recurring expenses like food, dedicated servers or domain names.