|
|||||||||
| 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. |
| Fields in com.maverick.ssh declared as SshChannel | |
|---|---|
protected SshChannel |
SubsystemChannel.channel
|
| Methods in com.maverick.ssh with parameters of type SshChannel | |
|---|---|
void |
ChannelAdapter.channelClosed(SshChannel channel)
|
void |
ChannelEventListener.channelClosed(SshChannel channel)
A channel is closed. |
void |
ChannelAdapter.channelClosing(SshChannel channel)
|
void |
ChannelEventListener.channelClosing(SshChannel channel)
A channel is closing. |
void |
ChannelAdapter.channelEOF(SshChannel channel)
|
void |
ChannelEventListener.channelEOF(SshChannel channel)
A channel's input is EOF. |
void |
ChannelAdapter.channelOpened(SshChannel channel)
|
void |
ChannelEventListener.channelOpened(SshChannel channel)
A channel has been opened. |
void |
ChannelAdapter.dataReceived(SshChannel channel,
byte[] buf,
int off,
int len)
|
void |
ChannelEventListener.dataReceived(SshChannel channel,
byte[] data,
int off,
int len)
A block of data has been received by the channel. |
void |
ChannelAdapter.dataSent(SshChannel channel,
byte[] buf,
int off,
int len)
|
void |
ChannelEventListener.dataSent(SshChannel channel,
byte[] data,
int off,
int len)
A block of data has been sent by the channel. |
void |
ChannelAdapter.extendedDataReceived(SshChannel channel,
byte[] data,
int off,
int len,
int extendedDataType)
|
void |
ChannelEventListener.extendedDataReceived(SshChannel channel,
byte[] data,
int off,
int len,
int extendedDataType)
A block of extended data has been received by the channel. |
| 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 | ||||||||