type
TScData = procedure(Sender: TObject; ChannelInfo: TScSSHChannelInfo; const Buffer: TBytes; const Offset, Count: integer) of object;
property OnDataFromClient: TScData;
Description
Occurs when a new data chunk from an SSH client is received and decrypted.
Parameters:
• | Sender - the object whose event handler is called; |
• | ChannelInfo - holds the information about the current SSH channel; |
• | Buffer - points to the buffer that contains received data; |
• | Offset - zero-based byte offset in Buffer that indicates location of the received data; |
• | Count - length of the received data. |
See Also