Discuss this help topic in SecureBlackbox Forum

TElIdSSHClientServerIOHandler.OnBeforeOpenSubsystem

TElIdSSHClientServerIOHandler     See also     


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


This event is fired when client requested a subsystem execution.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnBeforeOpenSubsystem: TSSHBeforeOpenSubsystemEvent;
    TSSHBeforeOpenSubsystemEvent = procedure(Sender: TObject; const Subsystem: string; Connection: TElSSHTunnelConnection; var Accept : boolean) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Subsystem - subsystem name (for example 'sftp')
  • Connection - logical connection
  • Accept - set this parameter to True if you agree to execute the Subsystem

Description

    If you agree to execute the Subsystem set Access parameter to True.
     Note,session for Connection has been established before subsystem opening. This event has to be preceded by OnBeforeOpenSession and OnOpenSession ones.

Discuss this help topic in SecureBlackbox Forum