property OnDataFromClient: TScDataFromClientEvent;
type
TScDataFromClientEvent = function (Sender: TObject; ServerConnection: TScSSLServerConnection; var Data; Offset, Count: integer): integer of object;
Description
Occurs when a new data chunk from the SSL client is received and decrypted.
Parameters:
• | Sender - the object whose event handler is called; |
• | ServerConnection - holds the information about the current SSL connection; |
• | Data - points to the buffer that contains received data; |
• | Offset - zero-based byte offset in Data that indicates location of the received data; |
• | Count - length of the received data. |