get_addr(Ref :: ranch:ref()) -> {IP :: inet:ip_address(), Port :: inet:port_number()} | {local, SocketFile :: binary()} | {undefined, undefined}
ranch:get_addr - Get the listening address
get_addr(Ref :: ranch:ref()) -> {IP :: inet:ip_address(), Port :: inet:port_number()} | {local, SocketFile :: binary()} | {undefined, undefined}
Get the listening address.
The listener name.
The address of the listener is returned as a tuple of the form {IP, Port}
when listening on a network interface, or {local, SocketFile}
when listening on a UNIX Domain socket. When the listener is suspended, {undefined, undefined}
will be returned.
The IP address is the IP of the network interface the socket is bound to.
The socket file is the path of a file on your system the socket is bound to.
{IP, Port} = ranch:get_addr(example).
{local, SocketFile} = ranch:get_addr(example).
ranch:start_listener(3), ranch:get_port(3), ranch:info(3), ranch(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.