Discuss this help topic in SecureBlackbox Forum

TElSSHServer.OnDebugData

TElSSHServer     


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


This event is fired when debug data from the client is received

Declaration

[C#/Java]
    event TSSHDataEvent OnDebugData;
    delegate void TSSHDataEvent(object Sender, byte[] Buffer);

[VB.NET]
    Event OnDebugData As TSSHDataEvent
    Delegate Sub TSSHDataEvent(ByVal Sender As Object, ByVal Buffer As Byte())

[Pascal]
    property OnDebugData : TSSHDataEvent;
    TSSHDataEvent = procedure (Sender: TObject; Buffer : pointer; Size : longint) of object;

[C++]
    not available

[PHP]
    not available

Parameters

  • Buffer - Buffer with debug data
  • Size - Debug data size

Description

    TElSSHServer fires this event when it receives debug information from the client. Debug information is used to inform other side about internal protocol details during session.

Although the protocol specification doesn't specify the format of debug data, it is usually alphanumeric.

Discuss this help topic in SecureBlackbox Forum