diff options
author | Hans Nilsson <[email protected]> | 2018-02-21 14:48:33 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-02-21 14:48:58 +0100 |
commit | ed01a9d3f2614933d05e7d85b4bb3568c4e04cdb (patch) | |
tree | b294c9d456844212c546c977cb691ae09d72a785 /lib/ssh/src/ssh_options.erl | |
parent | 309ef748ddc5bde4bcba280ce2739385f27a76e6 (diff) | |
download | otp-ed01a9d3f2614933d05e7d85b4bb3568c4e04cdb.tar.gz otp-ed01a9d3f2614933d05e7d85b4bb3568c4e04cdb.tar.bz2 otp-ed01a9d3f2614933d05e7d85b4bb3568c4e04cdb.zip |
ssh: Add option save_accepted_host
Diffstat (limited to 'lib/ssh/src/ssh_options.erl')
-rw-r--r-- | lib/ssh/src/ssh_options.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_options.erl b/lib/ssh/src/ssh_options.erl index 68c99743ee..cf1534bd78 100644 --- a/lib/ssh/src/ssh_options.erl +++ b/lib/ssh/src/ssh_options.erl @@ -439,6 +439,12 @@ default(client) -> class => user_options }, + {save_accepted_host, def} => + #{default => true, + chk => fun erlang:is_boolean/1, + class => user_options + }, + {pref_public_key_algs, def} => #{default => ssh_transport:default_algorithms(public_key), chk => fun check_pref_public_key_algs/1, |