SSHChannelData Event
Fired when the SSHHost sends channel data to the client.
Syntax
sshreversetunnel.on('SSHChannelData', [callback])
Callback
The 'callback' is called when the 'SSHChannelData' event is emited.
function(e){ }
The argument 'e' has the following properties:
e.channelId e.channelData (buffer)
Remarks
The SSHChannelData event will fire as data is received for the given ChannelId. ChannelData will contain the decrypted contents of the SSH packet.