Update sshd to 0.11.0

Fixes a few issues including a null pointer exception [1] that causes
ssh commands to hang.

It also adds server driven rekeying after 1G bytes of data transferred,
which is a useful security feature.

[1] https://issues.apache.org/jira/browse/SSHD-307

Change-Id: I441995eaf76e4fe53f7991f5aef00e062900791b
This commit is contained in:
David Pursehouse
2014-04-22 19:20:10 +09:00
parent b9c66ea380
commit c31e17f005
2 changed files with 7 additions and 2 deletions

View File

@@ -574,6 +574,11 @@ public class SshDaemon extends SshServer implements SshInfo, LifecycleListener {
@Override
public SshFile getFile(String file) {
return null;
}
@Override
public FileSystemView getNormalizedView() {
return null;
}};
}
});

View File

@@ -8,8 +8,8 @@ EXCLUDE = [
maven_jar(
name = 'sshd',
id = 'org.apache.sshd:sshd-core:0.10.1',
sha1 = '0081c09917f35565d762c886758dfbdfa1069679',
id = 'org.apache.sshd:sshd-core:0.11.0',
sha1 = '450da44553c98805ca6bb5709cad54df4acb802a',
license = 'Apache2.0',
deps = [':core'],
exclude = EXCLUDE,