SSHChannelClosed Event

Fired when a channel is closed.

Syntax

ANSI (Cross Platform)
virtual int FireSSHChannelClosed(SSHReverseTunnelSSHChannelClosedEventParams *e);
typedef struct {
const char *ChannelId; int reserved; } SSHReverseTunnelSSHChannelClosedEventParams; Unicode (Windows) virtual INT FireSSHChannelClosed(SSHReverseTunnelSSHChannelClosedEventParams *e);
typedef struct {
LPCWSTR ChannelId; INT reserved; } SSHReverseTunnelSSHChannelClosedEventParams;
- (void)onSSHChannelClosed:(NSString*)channelId;
#define EID_SSHREVERSETUNNEL_SSHCHANNELCLOSED 7

virtual INT IPWORKSSSH_CALL FireSSHChannelClosed(LPSTR &lpszChannelId);

Remarks

The SSHChannelClosed event is fired when a channel is closed on an SSH connection.

Note: Processing long-running requests, including sending channel data, inside this event may cause the underlying transport to stop processing SSH data until the event returns. In order to prevent this from happening, all requests should be processed asynchronously in a separate thread outside of this event.

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