| Package | Description |
|---|---|
| com.sshtools.common.ssh |
| Modifier and Type | Interface and Description |
|---|---|
interface |
SessionChannel |
interface |
SessionChannelServer |
| Modifier and Type | Method and Description |
|---|---|
default void |
ChannelEventListener.onChannelClose(Channel channel)
The channel has been closed
|
default void |
ChannelEventListener.onChannelClosing(Channel channel)
The channel is closing, but has not sent its SSH_MSG_CHANNEL_CLOSE
|
default void |
ChannelEventListener.onChannelDataIn(Channel channel,
java.nio.ByteBuffer buffer)
Data has been received on the channel.
|
default void |
ChannelEventListener.onChannelDataOut(Channel channel,
java.nio.ByteBuffer buffer)
Data has been sent on the channel.
|
default void |
ChannelEventListener.onChannelEOF(Channel channel)
The channel has received an EOF from the remote client
|
default void |
ChannelEventListener.onChannelError(Channel channel,
java.lang.Throwable e)
Called when a channel is disconnected because of a connection loss.
|
default void |
ChannelEventListener.onChannelExtendedData(Channel channel,
java.nio.ByteBuffer buffer,
int type)
Data has been received on the extended channel.
|
default void |
ChannelEventListener.onChannelOpen(Channel channel)
The channel has been opened.
|
default void |
ChannelEventListener.onWindowAdjust(Channel channel,
long currentWindowSpace)
When the remote side adjusts its window.
|
void |
SshConnection.openChannel(Channel channel) |
static void |
SessionChannelHelper.sendExitStatus(Channel channel,
int exitcode) |
Copyright © 2022. All rights reserved.