Mercurial > 510Connectbot
diff src/ch/ethz/ssh2/ServerConnection.java @ 301:ca5dd224a87b ganymed
add ecdsa key support everywhere
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 29 Jul 2014 18:50:35 -0700 |
parents | 349847b2e318 |
children | beaccc9df37b |
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/ServerConnection.java Tue Jul 29 18:36:57 2014 -0700 +++ b/src/ch/ethz/ssh2/ServerConnection.java Tue Jul 29 18:50:35 2014 -0700 @@ -10,6 +10,8 @@ import java.io.FileReader; import java.io.IOException; import java.net.Socket; +import java.util.List; +import java.util.ArrayList; import ch.ethz.ssh2.crypto.CryptoWishList; import ch.ethz.ssh2.crypto.PEMDecoder; @@ -49,11 +51,11 @@ */ public ServerConnection(Socket s) { - this(s, null, null); + this(s, null, null, null); } public ServerConnection(Socket s, String softwareversion) { - this(s, null, null); + this(s, null, null, null); this.softwareversion = softwareversion; }