You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
878 B
C#

9 months ago
namespace Renci.SshNet.Messages.Connection
{
/// <summary>
/// Represents SSH_MSG_CHANNEL_EOF message.
/// </summary>
[Message("SSH_MSG_CHANNEL_EOF", 96)]
public class ChannelEofMessage : ChannelMessage
{
/// <summary>
/// Initializes a new instance of the <see cref="ChannelEofMessage"/> class.
/// </summary>
public ChannelEofMessage()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="ChannelEofMessage"/> class.
/// </summary>
/// <param name="localChannelNumber">The local channel number.</param>
public ChannelEofMessage(uint localChannelNumber)
: base(localChannelNumber)
{
}
internal override void Process(Session session)
{
session.OnChannelEofReceived(this);
}
}
}