Renci.SshNet.Messages.Connection.ForwardedTcpipChannelInfo
Used to open "forwarded-tcpip" channel type
namespace Renci.SshNet.Messages.Connection
{
internal class ForwardedTcpipChannelInfo : ChannelOpenInfo
{
public const string NAME = "forwarded-tcpip";
public string ConnectedAddress { get; }
public uint ConnectedPort { get; }
public string OriginatorAddress { get; }
public uint OriginatorPort { get; }
public ForwardedTcpipChannelInfo(byte[] data);
public ForwardedTcpipChannelInfo(string connectedAddress, uint connectedPort, string originatorAddress, uint originatorPort);
}
}