diff options
author | Hans Nilsson <[email protected]> | 2016-01-04 15:21:51 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-01-18 12:21:01 +0100 |
commit | b9b704f8b584994cbbb4975133d6032d5d0d294e (patch) | |
tree | ef66a43c8d6318845e370d295db0c3dd4a4baa91 /lib/ssh/test/ssh_protocol_SUITE.erl | |
parent | 4d08c9292af4cbefce1e067a0c2b28386843ef55 (diff) | |
download | otp-b9b704f8b584994cbbb4975133d6032d5d0d294e.tar.gz otp-b9b704f8b584994cbbb4975133d6032d5d0d294e.tar.bz2 otp-b9b704f8b584994cbbb4975133d6032d5d0d294e.zip |
ssh: Optimization - inline encoding in ssh_message:encode/1, now 8 times faster.
Also fixes minor error in ssh_protocol_SUITE that the new encoder found.
Diffstat (limited to 'lib/ssh/test/ssh_protocol_SUITE.erl')
-rw-r--r-- | lib/ssh/test/ssh_protocol_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_protocol_SUITE.erl b/lib/ssh/test/ssh_protocol_SUITE.erl index fe197f8672..6b78a32a9b 100644 --- a/lib/ssh/test/ssh_protocol_SUITE.erl +++ b/lib/ssh/test/ssh_protocol_SUITE.erl @@ -307,7 +307,7 @@ no_common_alg_client_disconnects(Config) -> {send, hello}, {match, #ssh_msg_kexinit{_='_'}, receive_msg}, {send, #ssh_msg_kexinit{ % with unsupported "SOME-UNSUPPORTED" - cookie = 247381486335508958743193106082599558706, + cookie = <<80,158,95,51,174,35,73,130,246,141,200,49,180,190,82,234>>, kex_algorithms = ["diffie-hellman-group1-sha1"], server_host_key_algorithms = ["SOME-UNSUPPORTED"], % SIC! encryption_algorithms_client_to_server = ["aes128-ctr"], |