aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_cli.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2016-05-03 12:45:03 +0200
committerHans Nilsson <[email protected]>2016-05-04 14:53:08 +0200
commitf5e152a96c5ad957f3732a3f0cee09034c7c727d (patch)
treea3d91746b9cfe1f23a8c11d84e299b1eadd26aa4 /lib/ssh/src/ssh_cli.erl
parent41d5dacc152e7f4f4f3edf44c39d0c61d5dd48d4 (diff)
downloadotp-f5e152a96c5ad957f3732a3f0cee09034c7c727d.tar.gz
otp-f5e152a96c5ad957f3732a3f0cee09034c7c727d.tar.bz2
otp-f5e152a96c5ad957f3732a3f0cee09034c7c727d.zip
ssh: -spec added for behaviours
Diffstat (limited to 'lib/ssh/src/ssh_cli.erl')
-rw-r--r--lib/ssh/src/ssh_cli.erl15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_cli.erl b/lib/ssh/src/ssh_cli.erl
index 2d60008de6..74cd2e081a 100644
--- a/lib/ssh/src/ssh_cli.erl
+++ b/lib/ssh/src/ssh_cli.erl
@@ -47,6 +47,21 @@
%%====================================================================
%% ssh_channel callbacks
%%====================================================================
+-spec init(Args :: term()) ->
+ {ok, State :: term()} | {ok, State :: term(), timeout() | hibernate} |
+ {stop, Reason :: term()} | ignore.
+
+-spec terminate(Reason :: (normal | shutdown | {shutdown, term()} |
+ term()),
+ State :: term()) ->
+ term().
+
+-spec handle_msg(Msg ::term(), State :: term()) ->
+ {ok, State::term()} | {stop, ChannelId::integer(), State::term()}.
+-spec handle_ssh_msg({ssh_cm, ConnectionRef::term(), SshMsg::term()},
+ State::term()) -> {ok, State::term()} |
+ {stop, ChannelId::integer(),
+ State::term()}.
%%--------------------------------------------------------------------
%% Function: init(Args) -> {ok, State}