diff options
author | Hans Nilsson <[email protected]> | 2016-04-14 19:35:39 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-04-27 13:36:53 +0200 |
commit | 9ec2d2fcd17484163296b15315c18ab4509d0629 (patch) | |
tree | 838c6ea254b5a3d501797d345e1cac18abb4d738 /lib/ssh/src/ssh.erl | |
parent | 9dc46e8d58c9464c8a48b74342951265c3b43dc8 (diff) | |
download | otp-9ec2d2fcd17484163296b15315c18ab4509d0629.tar.gz otp-9ec2d2fcd17484163296b15315c18ab4509d0629.tar.bz2 otp-9ec2d2fcd17484163296b15315c18ab4509d0629.zip |
ssh: Begin -spec for ssh_connection_handler
Diffstat (limited to 'lib/ssh/src/ssh.erl')
-rw-r--r-- | lib/ssh/src/ssh.erl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh.erl b/lib/ssh/src/ssh.erl index d0121e73ba..48ef8aad2a 100644 --- a/lib/ssh/src/ssh.erl +++ b/lib/ssh/src/ssh.erl @@ -36,6 +36,11 @@ shell/1, shell/2, shell/3 ]). +%%% Type exports +-export_type([connection_ref/0, + channel_id/0 + ]). + %%-------------------------------------------------------------------- -spec start() -> ok | {error, term()}. -spec start(permanent | transient | temporary) -> ok | {error, term()}. |