aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/src/ssh_sftpd.erl
diff options
context:
space:
mode:
authorHans Nilsson <[email protected]>2019-08-19 15:17:08 +0200
committerHans Nilsson <[email protected]>2019-08-19 15:17:08 +0200
commitda1a578508a1439b48c73f0b0ede704c60c87d9a (patch)
tree19f63818f0df091b02d8d4ee9e5294f32dbc502a /lib/ssh/src/ssh_sftpd.erl
parent643789cc505432395eb82d4c9b8f0e520969f2b7 (diff)
parent8922f87db2a9496aabb5bc5e9abc97c7a8d2e5e6 (diff)
downloadotp-da1a578508a1439b48c73f0b0ede704c60c87d9a.tar.gz
otp-da1a578508a1439b48c73f0b0ede704c60c87d9a.tar.bz2
otp-da1a578508a1439b48c73f0b0ede704c60c87d9a.zip
Merge branch 'maint'
* maint: ssh: Use new ssh_connection:event() type in channel defs ssh: change type names ssh: The ssh_connection documentation is now generated ssh: Update ssh_sftp:start_channel documentation and code ssh: The ssh_sftp documentation is now generated ssh: The ssh_sftpd documentation is now generated
Diffstat (limited to 'lib/ssh/src/ssh_sftpd.erl')
-rw-r--r--lib/ssh/src/ssh_sftpd.erl12
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_sftpd.erl b/lib/ssh/src/ssh_sftpd.erl
index 5ec12e2d04..bf921f0ff3 100644
--- a/lib/ssh/src/ssh_sftpd.erl
+++ b/lib/ssh/src/ssh_sftpd.erl
@@ -58,7 +58,17 @@
%%====================================================================
%% API
%%====================================================================
--spec subsystem_spec(list()) -> subsystem_spec().
+-spec subsystem_spec(Options) -> Spec when
+ Options :: [ {cwd, string()} |
+ {file_handler, CallbackModule::string()} |
+ {max_files, integer()} |
+ {root, string()} |
+ {sftpd_vsn, integer()}
+ ],
+ Spec :: {Name, {CbMod,Options}},
+ Name :: string(),
+ CbMod :: atom() .
+
subsystem_spec(Options) ->
{"sftp", {?MODULE, Options}}.