Discuss this help topic in SecureBlackbox Forum

TElClientTCPForwardingSSHSubsystemHandler class

Properties     Methods     Events     Declared in     


TElClientTCPForwardingSSHSubsystemHandler is a descendant of TElTCPForwardingSSHSubsystemHandler.

Description

    This class is designed for client TCP-forwarding.
    it is a good idea to create object of this class inside TElSSHServer.OnOpenClientForwarding event handler, for example:
        Thread := TElSSHSubsystemThread.Create(TElClientTCPForwardingSSHSubsystemHandler, Connection, true);
        TElClientTCPForwardingSSHSubsystemHandler(Thread.Handler).Host := DestHost;
        TElClientTCPForwardingSSHSubsystemHandler(Thread.Handler).Port := DestPort;
        Thread.OnTerminate := OnThreadTerminate;
        Thread.FreeOnTerminate := true;
        Thread.Resume;

Properties

Inherited from TElCustomSSHSubsystemHandler

Methods

Inherited from TElCustomSSHSubsystemHandler

Events

Inherited from TElCustomSSHSubsystemHandler

Declared in

.NET:
  • Namespace: SBSSHForwardingHandlers
  • Assembly: SecureBlackbox.SSHServer
VCL:
  • Unit: SBSSHForwardingHandlers
Java:
  • Package: SecureBlackbox.SSHServer.jar
C++:
  • sbsshforwardinghandlers.h

Discuss this help topic in SecureBlackbox Forum