Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/Connection.java @ 317:cdb3c9215a9b ganymed
add ecdsa key support everywhere
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 17:01:21 -0700 |
parents | 071eccdff8ea |
children | 776a220dbcc6 |
comparison
equal
deleted
inserted
replaced
316:6b424bb783a2 | 317:cdb3c9215a9b |
---|---|
667 * closed, too. Can be called at any time. Don't forget to call this once | 667 * closed, too. Can be called at any time. Don't forget to call this once |
668 * you don't need a connection anymore - otherwise the receiver thread may | 668 * you don't need a connection anymore - otherwise the receiver thread may |
669 * run forever. | 669 * run forever. |
670 */ | 670 */ |
671 | 671 |
672 public synchronized void close() { | 672 public void close() { |
673 if (cm != null) { | 673 if (cm != null) { |
674 cm.closeAllChannels(); | 674 cm.closeAllChannels(); |
675 } | 675 } |
676 | 676 |
677 if (tm != null) { | 677 if (tm != null) { |