diff options
author | Hans Nilsson <[email protected]> | 2016-08-31 10:06:18 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-08-31 10:06:18 +0200 |
commit | c4ad47cbd88a3570116b3f60210d6cae2c62f7b5 (patch) | |
tree | 5b1a82794fca17133bfb90ea345d83cfd01ef44f /lib/ssh/src/ssh.hrl | |
parent | 88a20d25f8a9584a78cc8fce1c8f624a15dd2bb3 (diff) | |
parent | 3430829486d4c2a2af32214107ba39f9028d7aa8 (diff) | |
download | otp-c4ad47cbd88a3570116b3f60210d6cae2c62f7b5.tar.gz otp-c4ad47cbd88a3570116b3f60210d6cae2c62f7b5.tar.bz2 otp-c4ad47cbd88a3570116b3f60210d6cae2c62f7b5.zip |
Merge branch 'hans/ssh/test_fixes/OTP-13854' into maint
Fixes problems found by test suites as well as by Codenomicon/Defensics:
- reduce max random padding to 15 bytes (Codenomicon/Defensics)
- inclomplete pdu handling (Codenomicon/Defensics)
- badmatch
- non-blocking send fixes deadlock in ssh_connection_SUITE:interrupted_send
Diffstat (limited to 'lib/ssh/src/ssh.hrl')
-rw-r--r-- | lib/ssh/src/ssh.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh.hrl b/lib/ssh/src/ssh.hrl index 868f3a9181..4cd91177f6 100644 --- a/lib/ssh/src/ssh.hrl +++ b/lib/ssh/src/ssh.hrl @@ -127,7 +127,7 @@ recv_sequence = 0, keyex_key, keyex_info, - random_length_padding = 255, % From RFC 4253 section 6. + random_length_padding = 15, % From RFC 4253 section 6. %% User auth user, |