|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Packages that use Channel | |
|---|---|
| com.maverick.sshd | This package contains the base implementation of the SSH server. |
| Uses of Channel in com.maverick.sshd |
|---|
| Subclasses of Channel in com.maverick.sshd | |
|---|---|
class |
ForwardingChannel
An abstract forwarding channel implementation for use with both local and remote forwarding operations. |
class |
LocalForwardingChannel
Implements a Local forwarding channel for use with forwarding sockets from the client machine through the server to some endpoint reachable from the server machine. |
class |
RemoteForwardingChannel
Implements a Remote forwarding channel for use with forwarding sockets from the server machine through the client to some endpoint reachable from the client machine. |
class |
SessionChannel
This class provides an abstract session, it handles all the requests defined in the SSH Connection protocol for a session channel and passes the request to the concrete implementation through its abstract methods. |
class |
SocketForwardingChannel
An abstract forwarding channel implementation for use with forwarding both local and remote sockets. |
class |
UnsupportedSession
This is a basic session that provides a message to the user to inform them that a shell or command cannot be executed because the server does not support an interactive session. |
| Methods in com.maverick.sshd with parameters of type Channel | |
|---|---|
boolean |
AccessManagerAdapter.canOpenChannel(byte[] sessionid,
java.lang.String username,
Channel channel)
Can the user open a channel. |
boolean |
AccessManager.canOpenChannel(byte[] sessionid,
java.lang.String username,
Channel channel)
Can the user open a channel. |
void |
ChannelEventAdapter.onChannelClose(Channel channel)
|
void |
ChannelEventListener.onChannelClose(Channel channel)
The channel has been closed |
void |
ChannelEventAdapter.onChannelClosing(Channel channel)
|
void |
ChannelEventListener.onChannelClosing(Channel channel)
The channel is closing, but has not sent its SSH_MSG_CHANNEL_CLOSE |
void |
ChannelEventAdapter.onChannelEOF(Channel channel)
|
void |
ChannelEventListener.onChannelEOF(Channel channel)
The channel has received an EOF from the remote client |
void |
ChannelEventAdapter.onChannelOpen(Channel channel)
|
void |
ChannelEventListener.onChannelOpen(Channel channel)
The channel has been opened. |
boolean |
ConnectionProtocol.openChannel(Channel channel)
|
void |
ConnectionProtocol.sendChannelOpenConfirmation(Channel channel,
byte[] responsedata)
|
void |
ConnectionProtocol.sendChannelOpenFailure(Channel channel,
int reason,
java.lang.String desc)
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||