Discuss this help topic in SecureBlackbox Forum
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;
Inherited from TElCustomSSHSubsystemHandler
Inherited from TElCustomSSHSubsystemHandler
Inherited from TElCustomSSHSubsystemHandler
.NET: