diff options
author | Hans Nilsson <[email protected]> | 2016-06-01 11:45:22 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-06-01 11:45:22 +0200 |
commit | b2cefac14a6b26c78f584592801413611ff6f31c (patch) | |
tree | ad701defc29f4f9010c9cca0b8c51fd308f6a40d /lib/ssh/src/ssh_sftpd.erl | |
parent | 8e3eb916b34faf85b272031930be455163b49abf (diff) | |
parent | f5e152a96c5ad957f3732a3f0cee09034c7c727d (diff) | |
download | otp-b2cefac14a6b26c78f584592801413611ff6f31c.tar.gz otp-b2cefac14a6b26c78f584592801413611ff6f31c.tar.bz2 otp-b2cefac14a6b26c78f584592801413611ff6f31c.zip |
Merge branch 'hans/ssh/spec_behaviours/OTP-13749'
Diffstat (limited to 'lib/ssh/src/ssh_sftpd.erl')
-rw-r--r-- | lib/ssh/src/ssh_sftpd.erl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_sftpd.erl b/lib/ssh/src/ssh_sftpd.erl index 819cba697e..dca018f20f 100644 --- a/lib/ssh/src/ssh_sftpd.erl +++ b/lib/ssh/src/ssh_sftpd.erl @@ -57,6 +57,22 @@ %%==================================================================== %% API %%==================================================================== +-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()}. + subsystem_spec(Options) -> {"sftp", {?MODULE, Options}}. |