erl_epmd
Module
Module Summary
Since
Description
This module communicates with the EPMD daemon, see epmd. To implement your own epmd module please see ERTS User's Guide: How to Implement an Alternative Node Discovery for Erlang Distribution
Exports
OTP 21.0 |
This function is invoked as this module is added as a child of the erl_distribution supervisor.
OTP 21.0 |
OTP 21.0 |
Types
Registers the node with epmd and tells epmd what port will be used for the current node. It returns a creation number. This number is incremented on each register to help with identifying if a node is reconnecting to epmd.
OTP 21.0 |
OTP 21.0 |
Types
Requests the distribution port for the given node of an EPMD instance. Together with the port it returns a distribution protocol version which has been 5 since Erlang/OTP R6.
OTP 21.0 |
Types
{ok, inet:ip_address()} |
{ok, inet:ip_address(), Port, Version}
Called by the distribution module. Resolves the Host to an IP address.
Another epmd module may return port and distribution protocol version as well.
OTP 21.0 |
Types
Called by net_adm:names/0. Host defaults to the localhost. Returns the names and associated port numbers of the Erlang nodes that epmd registered at the specified host. Returns {error, address} if epmd is not operational.
Example:
(arne@dunn)1> erl_epmd:names(localhost).
{ok,[{"arne",40262}]}