SSHChannelOpened Event
Fired when a channel is successfully opened.
Syntax
sshreversetunnel.on('SSHChannelOpened', [callback])
Callback
The 'callback' is called when the 'SSHChannelOpened' event is emited.
function(e){ }
The argument 'e' has the following properties:
e.channelId
Remarks
The SSHChannelOpened event is fired when a channel is successfully opened 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.