comparison src/ch/ethz/ssh2/auth/AuthenticationManager.java @ 323:90537ba71897 ganymed

add ecdsa key support everywhere
author Carl Byington <carl@five-ten-sg.com>
date Thu, 31 Jul 2014 09:26:19 -0700
parents 5afb8c1a54b9
children a1a2e33b3565
comparison
equal deleted inserted replaced
322:a713e91c59c8 323:90537ba71897
67 this.tm = tm; 67 this.tm = tm;
68 } 68 }
69 69
70 private byte[] deQueue() throws IOException { 70 private byte[] deQueue() throws IOException {
71 if (connectionClosed) { 71 if (connectionClosed) {
72 throw tm.getReasonClosedCause(); 72 throw new IOException("The connection is closed.").initCause(tm.getReasonClosedCause());
73 } 73 }
74 74
75 // Wait for packet 75 // Wait for packet
76 try { 76 try {
77 return packets.take(); 77 return packets.take();