SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  ActiveX  C++ 


TElSSHTunnelConnectionList.OnData

TElSSHTunnelConnectionList     See also    


 

This event is fired when new portion of data is received via logical connection

   

Declaration

[C#/Java]
    not applicable;

[VB.NET]
    not applicable;

[Pascal]
    not applicable;

[VB6]
    Event OnData(ConnIndex As Long, Buffer)

[ActiveX]
    void _stdcall OnData([in] long ConnIndex, [in] VARIANT Buffer);

[C++]
    not implemented;

   

Parameters

  • ConnIndex - index of connection that received data in the list.
  • Buffer - pointer to buffer with decrypted data
   

Description

    Handle this event to read the actual data sent by server to the logical connection. For command and shell tunnels extended data come from the standard output (stdout).

     Note that there is no other way to receive decrypted logical connection data from server.

   

See also:     OnClose     OnError     OnExtendedData    

 
Back to top