diff options
author | Hans Nilsson <[email protected]> | 2015-09-11 12:07:21 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2015-09-11 12:07:21 +0200 |
commit | e889cb0381be081891c530bbf04c72797042455b (patch) | |
tree | 86d4446bd4e836d6abb0fba52aaa10ec0c3fc590 /lib/ssh/src | |
parent | fbf7a72deac2bc69f33bca6384104371ab9fe5be (diff) | |
download | otp-e889cb0381be081891c530bbf04c72797042455b.tar.gz otp-e889cb0381be081891c530bbf04c72797042455b.tar.bz2 otp-e889cb0381be081891c530bbf04c72797042455b.zip |
ssh: increased max number of algorithms
Diffstat (limited to 'lib/ssh/src')
-rw-r--r-- | lib/ssh/src/ssh_transport.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_transport.hrl b/lib/ssh/src/ssh_transport.hrl index d962b1111f..96ab1bb668 100644 --- a/lib/ssh/src/ssh_transport.hrl +++ b/lib/ssh/src/ssh_transport.hrl @@ -30,7 +30,7 @@ -define(DEFAULT_CLIENT_VERSION, {2, 0}). -define(DEFAULT_SERVER_VERSION, {2, 0}). --define(MAX_NUM_ALGORITHMS, 100). +-define(MAX_NUM_ALGORITHMS, 200). -define(DEFAULT_DH_GROUP_MIN, 1024). -define(DEFAULT_DH_GROUP_NBITS, 6144). |