aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_client_channel.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2019-08-08 13:37:05 +0200
committerHans Nilsson <[email protected]>2019-08-12 17:09:16 +0200
commita5f5feb9b4c4bedfa027b07e33a5d1ccc9fb240b (patch)
treed2825227019958c773c53fec3b6aa79babe53fe6 /lib/ssh/src/ssh_client_channel.erl
parent21b50e6bc78f26dd103ca2df1da51f9e1b3b5147 (diff)
downloadotp-a5f5feb9b4c4bedfa027b07e33a5d1ccc9fb240b.tar.gz
otp-a5f5feb9b4c4bedfa027b07e33a5d1ccc9fb240b.tar.bz2
otp-a5f5feb9b4c4bedfa027b07e33a5d1ccc9fb240b.zip
ssh: Use new ssh_connection:event() type in channel defs
Diffstat (limited to 'lib/ssh/src/ssh_client_channel.erl')
-rw-r--r--lib/ssh/src/ssh_client_channel.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_client_channel.erl b/lib/ssh/src/ssh_client_channel.erl
index f985d8e273..3bd1e1fdf1 100644
--- a/lib/ssh/src/ssh_client_channel.erl
+++ b/lib/ssh/src/ssh_client_channel.erl
@@ -52,7 +52,7 @@
-callback handle_msg(Msg ::term(), State :: term()) ->
{ok, State::term()} | {stop, ChannelId::ssh:channel_id(), State::term()}.
--callback handle_ssh_msg({ssh_cm, ConnectionRef::ssh:connection_ref(), SshMsg::term()},
+-callback handle_ssh_msg(ssh_connection:event(),
State::term()) -> {ok, State::term()} |
{stop, ChannelId::ssh:channel_id(),
State::term()}.