diff options
author | Hans Nilsson <[email protected]> | 2015-09-25 13:05:30 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-09-25 13:05:30 +0200 |
commit | 7fb90f21d37ed0f3d4853e79deb3f641a00d43d0 (patch) | |
tree | 71f757dea9dafcc3772eec1ce49bea3c0ed0190d /lib/ssh/src/ssh.hrl | |
parent | 71501e4307e78805bda531c78352913d12e1dfc9 (diff) | |
parent | 8b480500f5004cf179f4993a56ad97e8f8171d94 (diff) | |
download | otp-7fb90f21d37ed0f3d4853e79deb3f641a00d43d0.tar.gz otp-7fb90f21d37ed0f3d4853e79deb3f641a00d43d0.tar.bz2 otp-7fb90f21d37ed0f3d4853e79deb3f641a00d43d0.zip |
Merge branch 'hans/ssh/auth_review/OTP-12787' into maint
Before this merge the ssh application was stateless after
the key-exchange phase. To prevent the application to act
on messages received in the wrong state more states are
introduced. They take care of service requests and later
authorization.
* hans/ssh/auth_review/OTP-12787:
ssh: remove unused filed #ssh.kb_data
ssh: new states for keyboard-interactive
ssh: new state - service_request
Diffstat (limited to 'lib/ssh/src/ssh.hrl')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index 462c98f503..da64e4abf9 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -133,7 +133,6 @@ userauth_supported_methods, % string() eg "keyboard-interactive,password" userauth_methods, % list( string() ) eg ["keyboard-interactive", "password"] kb_tries_left = 0, % integer(), num tries left for "keyboard-interactive" - kb_data, userauth_preference, available_host_keys, authenticated = false |