diff options
author | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-09-15 05:19:47 +0000 |
---|---|---|
committer | Jeffrey Sharkey <jsharkey@jsharkey.org> | 2008-09-15 05:19:47 +0000 |
commit | 345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d (patch) | |
tree | 2780d2ca523d1c9e8b65a96cac8071e4aa8bef48 /src/org/theb/ssh | |
parent | 071e39dc7e7d06c021a6d65ae7a65242c8ea99ed (diff) | |
download | connectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.tar.gz connectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.tar.bz2 connectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.zip |
* changed handling of Console window to accept ssh://user@host:port/#nickname intents, which will also be used by desktop shortcuts later
* changed terminalbridge to handle all hostkey and password authentication through console instead of android gui (mimics traditional openssh)
* added disconnect and paste functionality to Console menu
Diffstat (limited to 'src/org/theb/ssh')
-rw-r--r-- | src/org/theb/ssh/HostsList.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/theb/ssh/HostsList.java b/src/org/theb/ssh/HostsList.java index 5760f46..eb0bc53 100644 --- a/src/org/theb/ssh/HostsList.java +++ b/src/org/theb/ssh/HostsList.java @@ -344,7 +344,7 @@ public class HostsList extends ListActivity { //Connection conn; //bound.openConnection(conn, nickname, emulation, scrollback); if (password != null) { - bound.openConnection(nickname, hostname, port, username, password, "screen", 100); + //bound.openConnection(nickname, hostname, port, username, password, "screen", 100); // open the console view and select this specific terminal Intent intent = new Intent(HostsList.this, Console.class); |