IChannelForwardedTcpip
A "forwarded-tcpip" SSH channel.
using Renci.SshNet.Common;
using System;
using System.Net;
namespace Renci.SshNet.Channels
{
internal interface IChannelForwardedTcpip : IDisposable
{
event EventHandler<ExceptionEventArgs> Exception;
void Bind(IPEndPoint remoteEndpoint, IForwardedPort forwardedPort);
}
}