|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SshChannel | |
com.maverick.ssh | This package contains a set of general interface contracts for SSH communication that provide the core set of functionality available in both the SSH1 and SSH2 protocol specifications. |
com.maverick.ssh.message | |
com.maverick.ssh2 | This package contains an SSH2 implementation of the com.maverick.ssh interfaces. |
Uses of SshChannel in com.maverick.ssh |
Subinterfaces of SshChannel in com.maverick.ssh | |
interface |
SshSession
Base interface for SSH sessions supporting all the features common to both SSH1 and SSH2. |
interface |
SshTunnel
Interface defining the contract for SSH forwarding channels. |
Methods in com.maverick.ssh with parameters of type SshChannel | |
void |
ChannelEventListener.channelOpened(SshChannel channel)
A channel has been opened. |
void |
ChannelEventListener.channelClosing(SshChannel channel)
A channel is closing. |
void |
ChannelEventListener.channelClosed(SshChannel channel)
A channel is closed. |
void |
ChannelEventListener.channelEOF(SshChannel channel)
A channel's input is EOF. |
void |
ChannelEventListener.dataReceived(SshChannel channel,
byte[] data,
int off,
int len)
A block of data has been received by the channel. |
void |
ChannelEventListener.dataSent(SshChannel channel,
byte[] data,
int off,
int len)
A block of data has been sent by the channel. |
void |
ChannelEventListener.extendedDataReceived(SshChannel channel,
byte[] data,
int off,
int len,
int extendedDataType)
A block of extended data has been received by the channel. |
void |
ChannelAdapter.channelOpened(SshChannel channel)
|
void |
ChannelAdapter.channelClosing(SshChannel channel)
|
void |
ChannelAdapter.channelClosed(SshChannel channel)
|
void |
ChannelAdapter.channelEOF(SshChannel channel)
|
void |
ChannelAdapter.dataReceived(SshChannel channel,
byte[] buf,
int off,
int len)
|
void |
ChannelAdapter.dataSent(SshChannel channel,
byte[] buf,
int off,
int len)
|
void |
ChannelAdapter.extendedDataReceived(SshChannel channel,
byte[] data,
int off,
int len,
int extendedDataType)
|
Constructors in com.maverick.ssh with parameters of type SshChannel | |
SubsystemChannel(SshChannel channel)
Create a new subsystem channel. |
Uses of SshChannel in com.maverick.ssh.message |
Classes in com.maverick.ssh.message that implement SshChannel | |
class |
com.maverick.ssh.message.SshAbstractChannel
|
Uses of SshChannel in com.maverick.ssh2 |
Classes in com.maverick.ssh2 that implement SshChannel | |
class |
Ssh2Channel
All terminal sessions, forwarded connections, etc are channels and this class implements the base SSH2 channel. |
class |
Ssh2Session
This class implements the SSH2 session channel, unlike SSH1 multiple sessions can be opened on the same SSH connection. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |