File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
src/Renci.SshNet/Channels Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -120,11 +120,19 @@ protected ISession Session
120
120
public uint LocalChannelNumber { get ; private set ; }
121
121
122
122
/// <summary>
123
- /// Gets the maximum size of a packet.
123
+ /// Gets the maximum size of a data packet that we can receive using the channel .
124
124
/// </summary>
125
125
/// <value>
126
126
/// The maximum size of a packet.
127
127
/// </value>
128
+ /// <remarks>
129
+ /// <para>
130
+ /// This is the maximum size (in bytes) we support for the data (payload) of a
131
+ /// <c>SSH_MSG_CHANNEL_DATA</c> message we receive.
132
+ /// </para>
133
+ /// <para>
134
+ /// We currently do not enforce this limit.
135
+ /// </para>
128
136
public uint LocalPacketSize { get ; private set ; }
129
137
130
138
/// <summary>
Original file line number Diff line number Diff line change @@ -43,11 +43,19 @@ internal interface IChannel : IDisposable
43
43
uint LocalChannelNumber { get ; }
44
44
45
45
/// <summary>
46
- /// Gets the maximum size of a packet.
46
+ /// Gets the maximum size of a data packet that we can receive using the channel .
47
47
/// </summary>
48
48
/// <value>
49
49
/// The maximum size of a packet.
50
50
/// </value>
51
+ /// <remarks>
52
+ /// <para>
53
+ /// This is the maximum size (in bytes) we support for the data (payload) of a
54
+ /// <c>SSH_MSG_CHANNEL_DATA</c> message we receive.
55
+ /// </para>
56
+ /// <para>
57
+ /// We currently do not enforce this limit.
58
+ /// </para>
51
59
uint LocalPacketSize { get ; }
52
60
53
61
/// <summary>
You can’t perform that action at this time.
0 commit comments