Renci.SshNet.Channels.IChannelDirectTcpip
A "direct-tcpip" SSH channel.
namespace Renci.SshNet.Channels
{
internal interface IChannelDirectTcpip : IDisposable
{
bool IsOpen { get; }
uint LocalChannelNumber { get; }
event EventHandler<ExceptionEventArgs> Exception;
void Open(string remoteHost, uint port, IForwardedPort forwardedPort, Socket socket);
void Bind();
}
}