<PackageReference Include="SSH.NET" Version="2024.2.0" />

Renci.SshNet.Messages.Connection.ForwardedTcpipChannelInfo

Used to open "forwarded-tcpip" channel type.
namespace Renci.SshNet.Messages.Connection { internal sealed 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); } }