diff options
author | Hans Nilsson <[email protected]> | 2013-09-25 14:56:19 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2013-10-28 16:09:20 +0100 |
commit | d54e4318a77c7a42a7b8952780b33987775c7608 (patch) | |
tree | 1d05e90565293daa09b337e18e5021f78390c5d6 /lib/ssh/src/ssh.erl | |
parent | 609e1414a0685c2082d30f9d5c50ca65209a1236 (diff) | |
download | otp-d54e4318a77c7a42a7b8952780b33987775c7608.tar.gz otp-d54e4318a77c7a42a7b8952780b33987775c7608.tar.bz2 otp-d54e4318a77c7a42a7b8952780b33987775c7608.zip |
ssh: Add function ssh:peername/1 with test
OTP-11345, sto575, tsk374
Diffstat (limited to 'lib/ssh/src/ssh.erl')
-rw-r--r-- | lib/ssh/src/ssh.erl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl index 7d5478c3f6..718321ef21 100644 --- a/lib/ssh/src/ssh.erl +++ b/lib/ssh/src/ssh.erl @@ -28,6 +28,7 @@ -export([start/0, start/1, stop/0, connect/3, connect/4, close/1, connection_info/2, channel_info/3, daemon/1, daemon/2, daemon/3, + peername/1, stop_listener/1, stop_listener/2, stop_daemon/1, stop_daemon/2, shell/1, shell/2, shell/3]). @@ -245,6 +246,17 @@ shell(Host, Port, Options) -> end. %%-------------------------------------------------------------------- +%% Function: peername(ConnectionRef) -> {ok, {Host,Port}} +%% | {error,Error} +%% +%% Description: Returns the peer address of the connection +%%-------------------------------------------------------------------- +peername(ConnectionRef) -> + [{peer, {_Name,{IP,Port}}}] = + ssh_connection_manager:connection_info(ConnectionRef, [peer]), + {ok, {IP,Port}}. + +%%-------------------------------------------------------------------- %%% Internal functions %%-------------------------------------------------------------------- fix_idle_time(SshOptions) -> |