SSHChannelEOF Event
Fired when the remote peer signals the end of the data stream for the channel.
Object Oriented Interface
public function fireSSHChannelEOF($param);
Procedural Interface
ipworksssh_sshclient_register_callback($res, 7, array($this, 'fireSSHChannelEOF'));
Parameter List
'channelid'
Remarks
The SSHChannelEOF event is fired when the end of the data stream for a channel on an SSH connection is reached.
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.