Uses of Class
com.trilead.ssh2.channel.Channel
-
Packages that use Channel Package Description com.trilead.ssh2 com.trilead.ssh2.channel -
-
Uses of Channel in com.trilead.ssh2
Fields in com.trilead.ssh2 declared as Channel Modifier and Type Field Description (package private) Channel
LocalStreamForwarder. cn
(package private) Channel
Session. cn
-
Uses of Channel in com.trilead.ssh2.channel
Fields in com.trilead.ssh2.channel declared as Channel Modifier and Type Field Description (package private) Channel
ChannelInputStream. c
(package private) Channel
ChannelOutputStream. c
(package private) Channel
RemoteAcceptThread. c
(package private) Channel
RemoteX11AcceptThread. c
(package private) Channel
StreamForwarder. c
Methods in com.trilead.ssh2.channel that return Channel Modifier and Type Method Description private Channel
ChannelManager. getChannel(int id)
Channel
ChannelManager. openDirectTCPIPChannel(java.lang.String host_to_connect, int port_to_connect, java.lang.String originator_IP_address, int originator_port)
Channel
ChannelManager. openSessionChannel()
Methods in com.trilead.ssh2.channel with parameters of type Channel Modifier and Type Method Description private int
ChannelManager. addChannel(Channel c)
void
ChannelManager. closeChannel(Channel c, java.lang.String reason, boolean force)
int
ChannelManager. getAvailable(Channel c, boolean extended)
int
ChannelManager. getChannelData(Channel c, boolean extended, byte[] target, int off, int len)
private java.io.IOException
ChannelManager. ioException(java.lang.String msg, Channel c)
void
ChannelManager. requestChannelTrileadPing(Channel c)
void
ChannelManager. requestExecCommand(Channel c, java.lang.String cmd)
void
ChannelManager. requestPTY(Channel c, java.lang.String term, int term_width_characters, int term_height_characters, int term_width_pixels, int term_height_pixels, byte[] terminal_modes)
void
ChannelManager. requestShell(Channel c)
void
ChannelManager. requestSubSystem(Channel c, java.lang.String subSystemName)
void
ChannelManager. requestX11(Channel c, boolean singleConnection, java.lang.String x11AuthenticationProtocol, java.lang.String x11AuthenticationCookie, int x11ScreenNumber)
void
ChannelManager. sendData(Channel c, byte[] buffer, int pos, int len)
void
ChannelManager. sendEOF(Channel c)
void
ChannelManager. sendOpenConfirmation(Channel c)
private boolean
ChannelManager. waitForChannelRequestResult(Channel c)
int
ChannelManager. waitForCondition(Channel c, long timeout, int condition_mask)
Wait until for a condition.private void
ChannelManager. waitUntilChannelOpen(Channel c)
Constructors in com.trilead.ssh2.channel with parameters of type Channel Constructor Description ChannelInputStream(Channel c, boolean isExtended)
ChannelOutputStream(Channel c)
RemoteAcceptThread(Channel c, java.lang.String remoteConnectedAddress, int remoteConnectedPort, java.lang.String remoteOriginatorAddress, int remoteOriginatorPort, java.lang.String targetAddress, int targetPort)
RemoteX11AcceptThread(Channel c, java.lang.String remoteOriginatorAddress, int remoteOriginatorPort)
StreamForwarder(Channel c, StreamForwarder sibling, java.net.Socket s, java.io.InputStream is, java.io.OutputStream os, java.lang.String mode)
-