IPWorks SSH 2020 Python Edition

Questions / Feedback?

on_ssh_channel_data Event

Fired when the SSHHost sends channel data to the client.

Syntax

class SSHReverseTunnelSSHChannelDataEventParams(object):
  @property
  def channel_id() -> str: ...
  @property
  def channel_data() -> bytes: ...

# In class SSHReverseTunnel:
@property
def on_ssh_channel_data() -> Callable[[SSHReverseTunnelSSHChannelDataEventParams], None]: ...
@on_ssh_channel_data.setter
def on_ssh_channel_data(event_hook: Callable[[SSHReverseTunnelSSHChannelDataEventParams], None]) -> None: ...

Remarks

The on_ssh_channel_data event will fire as data is received for the given ChannelId. ChannelData will contain the decrypted contents of the SSH packet.

Copyright (c) 2023 /n software inc. - All rights reserved.
IPWorks SSH 2020 Python Edition - Version 20.0 [Build 8501]