Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/channel/ChannelManager.java @ 305:d2b303406d63 ganymed
remove extra override annotations that generate eclipse compiler errors
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 12:09:51 -0700 |
parents | 9ae4ed7bb523 |
children | 071eccdff8ea |
comparison
equal
deleted
inserted
replaced
304:abad243cb341 | 305:d2b303406d63 |
---|---|
19 import ch.ethz.ssh2.PacketTypeException; | 19 import ch.ethz.ssh2.PacketTypeException; |
20 import ch.ethz.ssh2.PtySettings; | 20 import ch.ethz.ssh2.PtySettings; |
21 import ch.ethz.ssh2.ServerConnectionCallback; | 21 import ch.ethz.ssh2.ServerConnectionCallback; |
22 import ch.ethz.ssh2.ServerSessionCallback; | 22 import ch.ethz.ssh2.ServerSessionCallback; |
23 import ch.ethz.ssh2.log.Logger; | 23 import ch.ethz.ssh2.log.Logger; |
24 import ch.ethz.ssh2.packets.*; | 24 import ch.ethz.ssh2.packets.PacketChannelAuthAgentReq; |
25 import ch.ethz.ssh2.packets.PacketChannelFailure; | |
26 import ch.ethz.ssh2.packets.PacketChannelOpenConfirmation; | |
27 import ch.ethz.ssh2.packets.PacketChannelOpenFailure; | |
28 import ch.ethz.ssh2.packets.PacketChannelSuccess; | |
29 import ch.ethz.ssh2.packets.PacketGlobalCancelForwardRequest; | |
30 import ch.ethz.ssh2.packets.PacketGlobalForwardRequest; | |
31 import ch.ethz.ssh2.packets.PacketOpenDirectTCPIPChannel; | |
32 import ch.ethz.ssh2.packets.PacketOpenSessionChannel; | |
33 import ch.ethz.ssh2.packets.PacketSessionExecCommand; | |
34 import ch.ethz.ssh2.packets.PacketSessionPtyRequest; | |
35 import ch.ethz.ssh2.packets.PacketSessionStartShell; | |
36 import ch.ethz.ssh2.packets.PacketSessionSubsystemRequest; | |
37 import ch.ethz.ssh2.packets.PacketSessionX11Request; | |
38 import ch.ethz.ssh2.packets.PacketWindowChange; | |
39 import ch.ethz.ssh2.packets.Packets; | |
40 import ch.ethz.ssh2.packets.TypesReader; | |
25 import ch.ethz.ssh2.server.ServerConnectionState; | 41 import ch.ethz.ssh2.server.ServerConnectionState; |
26 import ch.ethz.ssh2.transport.MessageHandler; | 42 import ch.ethz.ssh2.transport.MessageHandler; |
27 import ch.ethz.ssh2.transport.TransportManager; | 43 import ch.ethz.ssh2.transport.TransportManager; |
28 | 44 |
29 /** | 45 /** |
1602 } | 1618 } |
1603 | 1619 |
1604 log.debug("Got SSH_MSG_REQUEST_FAILURE"); | 1620 log.debug("Got SSH_MSG_REQUEST_FAILURE"); |
1605 } | 1621 } |
1606 | 1622 |
1607 @Override | |
1608 public void handleFailure(final IOException failure) { | 1623 public void handleFailure(final IOException failure) { |
1609 log.debug("HandleMessage: got shutdown"); | 1624 log.debug("HandleMessage: got shutdown"); |
1610 | 1625 |
1611 synchronized(listenerThreads) { | 1626 synchronized(listenerThreads) { |
1612 for(IChannelWorkerThread lat : listenerThreads) { | 1627 for(IChannelWorkerThread lat : listenerThreads) { |