diff --git a/src/Renci.SshNet/Channels/Channel.cs b/src/Renci.SshNet/Channels/Channel.cs index 8ced6516..8ea7df54 100644 --- a/src/Renci.SshNet/Channels/Channel.cs +++ b/src/Renci.SshNet/Channels/Channel.cs @@ -120,11 +120,19 @@ namespace Renci.SshNet.Channels public uint LocalChannelNumber { get; private set; } /// - /// Gets the maximum size of a packet. + /// Gets the maximum size of a data packet that we can receive using the channel. /// /// /// The maximum size of a packet. /// + /// + /// + /// This is the maximum size (in bytes) we support for the data (payload) of a + /// SSH_MSG_CHANNEL_DATA message we receive. + /// + /// + /// We currently do not enforce this limit. + /// public uint LocalPacketSize { get; private set; } /// diff --git a/src/Renci.SshNet/Channels/IChannel.cs b/src/Renci.SshNet/Channels/IChannel.cs index c3fb67d8..4b4df01d 100644 --- a/src/Renci.SshNet/Channels/IChannel.cs +++ b/src/Renci.SshNet/Channels/IChannel.cs @@ -43,11 +43,19 @@ namespace Renci.SshNet.Channels uint LocalChannelNumber { get; } /// - /// Gets the maximum size of a packet. + /// Gets the maximum size of a data packet that we can receive using the channel. /// /// /// The maximum size of a packet. /// + /// + /// + /// This is the maximum size (in bytes) we support for the data (payload) of a + /// SSH_MSG_CHANNEL_DATA message we receive. + /// + /// + /// We currently do not enforce this limit. + /// uint LocalPacketSize { get; } ///