You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When both SSH.NET and a SSH server simultaneously close a channel, then we may end up sending a SSH_MSG_CHANNEL_EOF after we've sent SSH_MSG_CHANNEL_CLOSE.
This causes the SSH server to disconnect the session.
The text was updated successfully, but these errors were encountered:
…ock.
Fixes issue #84.
Eliminate public Close() method and its use within SSH.NET.
Remove wait bool from protected Close(bool) method.
The protected Close() method will now always wait for a SSH_MSG_CHANNEL_CLOSE if the client initiated closing the channel.
When both SSH.NET and a SSH server simultaneously close a channel, then we may end up sending a SSH_MSG_CHANNEL_EOF after we've sent SSH_MSG_CHANNEL_CLOSE.
This causes the SSH server to disconnect the session.
The text was updated successfully, but these errors were encountered: