SSHChannelData Event

Fired when the SSHHost sends channel data to the client.

Syntax

class SSHReverseTunnelSSHChannelDataEventParams {
public:
  const QString &ChannelId();
  const QByteArray &ChannelData();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void SSHChannelData(SSHReverseTunnelSSHChannelDataEventParams *e);
// Or, subclass SSHReverseTunnel and override this emitter function. virtual int FireSSHChannelData(SSHReverseTunnelSSHChannelDataEventParams *e) {...}

Remarks

The SSHChannelData 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 Qt Edition - Version 20.0 [Build 8501]