Uses of Interface
net.schmizz.sshj.connection.channel.Channel
-
Packages that use Channel Package Description net.schmizz.sshj net.schmizz.sshj.connection net.schmizz.sshj.connection.channel net.schmizz.sshj.connection.channel.direct net.schmizz.sshj.connection.channel.forwarded -
-
Uses of Channel in net.schmizz.sshj
Methods in net.schmizz.sshj with parameters of type Channel Modifier and Type Method Description void
SocketClient. connectVia(Channel channel, java.lang.String hostname, int port)
-
Uses of Channel in net.schmizz.sshj.connection
Fields in net.schmizz.sshj.connection with type parameters of type Channel Modifier and Type Field Description private java.util.Map<java.lang.Integer,Channel>
ConnectionImpl. channels
Methods in net.schmizz.sshj.connection that return Channel Modifier and Type Method Description Channel
Connection. get(int id)
Channel
ConnectionImpl. get(int id)
private Channel
ConnectionImpl. getChannel(SSHPacket buffer)
Methods in net.schmizz.sshj.connection with parameters of type Channel Modifier and Type Method Description void
Connection. attach(Channel chan)
Attach aChannel
to this connection.void
ConnectionImpl. attach(Channel chan)
void
Connection. forget(Channel chan)
Forget an attachedChannel
.void
ConnectionImpl. forget(Channel chan)
-
Uses of Channel in net.schmizz.sshj.connection.channel
Subinterfaces of Channel in net.schmizz.sshj.connection.channel Modifier and Type Interface Description static interface
Channel.Direct
Direct channels are those that are initiated by us.static interface
Channel.Forwarded
Forwarded channels are those that are initiated by the server.Classes in net.schmizz.sshj.connection.channel that implement Channel Modifier and Type Class Description class
AbstractChannel
Fields in net.schmizz.sshj.connection.channel declared as Channel Modifier and Type Field Description private Channel
ChannelInputStream. chan
Methods in net.schmizz.sshj.connection.channel with parameters of type Channel Modifier and Type Method Description static void
SocketStreamCopyMonitor. monitor(int frequency, java.util.concurrent.TimeUnit unit, Event<java.io.IOException> x, Event<java.io.IOException> y, Channel channel, java.net.Socket socket)
Constructors in net.schmizz.sshj.connection.channel with parameters of type Channel Constructor Description ChannelInputStream(Channel chan, Transport trans, Window.Local win)
-
Uses of Channel in net.schmizz.sshj.connection.channel.direct
Subinterfaces of Channel in net.schmizz.sshj.connection.channel.direct Modifier and Type Interface Description interface
Session
static interface
Session.Command
Command API.static interface
Session.Shell
Shell API.static interface
Session.Subsystem
Subsystem API.Classes in net.schmizz.sshj.connection.channel.direct that implement Channel Modifier and Type Class Description class
AbstractDirectChannel
Base class for direct channels whose open is initiated by the client.class
DirectConnection
A channel for creating a direct TCP/IP connection from the server to a remote address.class
DirectTCPIPChannel
static class
LocalPortForwarder.ForwardedChannel
class
SessionChannel
Session
implementation. -
Uses of Channel in net.schmizz.sshj.connection.channel.forwarded
Classes in net.schmizz.sshj.connection.channel.forwarded that implement Channel Modifier and Type Class Description class
AbstractForwardedChannel
Base class for forwarded channels whose open is initiated by the server.static class
RemotePortForwarder.ForwardedTCPIPChannel
Aforwarded-tcpip
channel.static class
X11Forwarder.X11Channel
Anx11
forwarded channel.
-