diff options
author | Hans Nilsson <[email protected]> | 2017-04-10 16:25:06 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-04-26 12:13:01 +0200 |
commit | 29d7533c715f972ee996382c2c45cc0c055e10d2 (patch) | |
tree | b370920e82c28335cb601d997920d41ea6cd76cd /lib/ssh/src/ssh.hrl | |
parent | c0d2e134f90ddd3fd2f5b0f9a94a5b0d55c93416 (diff) | |
download | otp-29d7533c715f972ee996382c2c45cc0c055e10d2.tar.gz otp-29d7533c715f972ee996382c2c45cc0c055e10d2.tar.bz2 otp-29d7533c715f972ee996382c2c45cc0c055e10d2.zip |
ssh: Implement ext-info extension. draft-ietf-curdle-ssh-ext-info
This is only a draft extension, but it is quite stable and already supported
by some implementations. OpenSSH has had it for some year now.
Diffstat (limited to 'lib/ssh/src/ssh.hrl')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index c7ed11895c..1a95bb27e7 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -145,6 +145,9 @@ c_keyinit, %% binary payload of kexinit packet s_keyinit, %% binary payload of kexinit packet + send_ext_info, %% May send ext-info to peer + recv_ext_info, %% Expect ext-info from peer + algorithms, %% #alg{} kex, %% key exchange algorithm @@ -216,7 +219,9 @@ compress, decompress, c_lng, - s_lng + s_lng, + send_ext_info, + recv_ext_info }). -record(ssh_key, |