diff options
author | Magnus Henoch <[email protected]> | 2016-04-20 17:20:05 +0100 |
---|---|---|
committer | Magnus Henoch <[email protected]> | 2016-05-25 17:36:50 +0100 |
commit | 252c60632664fdf54395d54ad8d7b7e9e6e74cca (patch) | |
tree | a7e916f5812af7970ea8f9d1db548aa444039706 /lib/kernel/src/net_adm.erl | |
parent | 34f853950685e4e7ab38f30fc3f17a6beac13349 (diff) | |
download | otp-252c60632664fdf54395d54ad8d7b7e9e6e74cca.tar.gz otp-252c60632664fdf54395d54ad8d7b7e9e6e74cca.tar.bz2 otp-252c60632664fdf54395d54ad8d7b7e9e6e74cca.zip |
Use the -epmd_module flag consistently
If the -epmd_module flag has been specified on the command line, use
that module to register and look up node names instead of the default,
erl_epmd.
Also document this option.
Diffstat (limited to 'lib/kernel/src/net_adm.erl')
-rw-r--r-- | lib/kernel/src/net_adm.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/kernel/src/net_adm.erl b/lib/kernel/src/net_adm.erl index a38356c224..8ec275b88b 100644 --- a/lib/kernel/src/net_adm.erl +++ b/lib/kernel/src/net_adm.erl @@ -96,7 +96,8 @@ names() -> Reason :: address | file:posix(). names(Hostname) -> - erl_epmd:names(Hostname). + ErlEpmd = net_kernel:epmd_module(), + ErlEpmd:names(Hostname). -spec dns_hostname(Host) -> {ok, Name} | {error, Host} when Host :: atom() | string(), |