diff options
author | Erlang/OTP <[email protected]> | 2018-11-14 10:03:44 +0100 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2018-11-14 10:03:44 +0100 |
commit | 23ea9ba0451753b317117bd3f3148b1dbfbbdcb6 (patch) | |
tree | a00bb2c91eaaafc9163a5551cbb7782dbce3a888 /lib/ssh/src/ssh_connection_handler.erl | |
parent | 39676016001f61affa62f040f42c704a62fa542c (diff) | |
parent | a53a4d0bae3e39877f3edf4c0f33a350b34a8137 (diff) | |
download | otp-23ea9ba0451753b317117bd3f3148b1dbfbbdcb6.tar.gz otp-23ea9ba0451753b317117bd3f3148b1dbfbbdcb6.tar.bz2 otp-23ea9ba0451753b317117bd3f3148b1dbfbbdcb6.zip |
Merge branch 'hans/ssh/fix_ext_info/OTP-15413' into maint-20
* hans/ssh/fix_ext_info/OTP-15413:
ssh: Fix ssh_options checking for ext_info
ssh: Fix SSH_MSG_EXT_INFO bug for OTP SSH as server
ssh: Fix SSH_MSG_EXT_INFO bug for OTP SSH as client
Diffstat (limited to 'lib/ssh/src/ssh_connection_handler.erl')
-rw-r--r-- | lib/ssh/src/ssh_connection_handler.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ssh/src/ssh_connection_handler.erl b/lib/ssh/src/ssh_connection_handler.erl index 36152bacf7..84719ebc97 100644 --- a/lib/ssh/src/ssh_connection_handler.erl +++ b/lib/ssh/src/ssh_connection_handler.erl @@ -952,6 +952,10 @@ handle_event(_, #ssh_msg_userauth_info_request{}, {userauth_keyboard_interactive %%% ######## {connected, client|server} #### +%% Skip ext_info messages in connected state (for example from OpenSSH >= 7.7) +handle_event(_, #ssh_msg_ext_info{}, {connected,_Role}, D) -> + {keep_state, D}; + handle_event(_, {#ssh_msg_kexinit{},_}, {connected,Role}, D0) -> {KeyInitMsg, SshPacket, Ssh} = ssh_transport:key_exchange_init_msg(D0#data.ssh_params), D = D0#data{ssh_params = Ssh, |