diff options
author | Hans Nilsson <[email protected]> | 2018-10-22 16:12:02 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-10-24 10:11:20 +0200 |
commit | d655a343837f4a05ca7a9683d57245734d7482ac (patch) | |
tree | e7f1b6c7b2ec86adc163cecdcda0987af1e3d934 /lib/ssh/src/ssh_file.erl | |
parent | 2edaee2a6e134b4792956ad8196833faaa6af43b (diff) | |
download | otp-d655a343837f4a05ca7a9683d57245734d7482ac.tar.gz otp-d655a343837f4a05ca7a9683d57245734d7482ac.tar.bz2 otp-d655a343837f4a05ca7a9683d57245734d7482ac.zip |
ssh: Move some option's documentation to ssh_file
user_dir
user_dir_fun (missing previously)
*_passphrase
system_dir
Diffstat (limited to 'lib/ssh/src/ssh_file.erl')
-rw-r--r-- | lib/ssh/src/ssh_file.erl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_file.erl b/lib/ssh/src/ssh_file.erl index 832952ed52..954d5b68b6 100644 --- a/lib/ssh/src/ssh_file.erl +++ b/lib/ssh/src/ssh_file.erl @@ -39,6 +39,21 @@ is_auth_key/3]). +-export_type([system_dir_daemon_option/0, + user_dir_common_option/0, + user_dir_fun_common_option/0, + pubkey_passphrase_client_options/0 + ]). + +-type system_dir_daemon_option() :: {system_dir, string()}. +-type user_dir_common_option() :: {user_dir, false | string()}. +-type user_dir_fun_common_option() :: {user_dir_fun, fun()}. +-type pubkey_passphrase_client_options() :: {dsa_pass_phrase, string()} + | {rsa_pass_phrase, string()} + | {ecdsa_pass_phrase, string()} . + + + -define(PERM_700, 8#700). -define(PERM_644, 8#644). |