Source code checked in, #34742
Fix compiler and (correct) resharper warnings across the solution.
View ArticlePatch Uploaded: #15948
osmancarik has uploaded a patch.Description:You need to delete redundant encryptions from ConnectionInfo.Encryptions in order to be able to communicate with some servers. In my case it threw an...
View ArticleSource code checked in, #34784
Issue #1918: Connection dropped by server due to invalid DSA signature Pad each part of signature with zero's until its 20 bytes. Signature should be exactly 40 bytes.
View ArticleSource code checked in, #34787
Rename WaitHandle method to WaitOnHandle to avoid naming clash with WaitHandle class.
View ArticleSource code checked in, #34791
Fixed typo in comments, use var where possible. Change visibility of _channelEof to private. Remove empty lines.
View ArticleSource code checked in, #34793
Avoid race conditions when signaling events or setting waithandles. Remove empty lines. Fixed event handler leak for Closed event on Channel.
View ArticleSource code checked in, #34794
BaseClient: * Added bool argument to BaseClient ctor to indicate whether the specified ConnectionInfo instance is owned by the client. * In Dispose, also dispose ConnectionInfo if ownsConnectionInfo is...
View ArticleSource code checked in, #34811
Use server decryption algorithm instead of client encryption algorithm to decrypt server message. Fixes issue #1917.
View ArticleSource code checked in, #34838
Avoid race conditions signaling events. Update release notes with new fixes.
View ArticleSource code checked in, #34839
Large improvement of throughput for DownloadFile by taking into account of the SSH_FXP_DATA header info for determining the length of the data we request in each response message. This eliminates an...
View ArticlePatch Uploaded: #16009
trurl123 has uploaded a patch.Description:This patch fixes crashing on finalization. Channel sends a message on disposing by some parent objects. Exceptions leads to whole application crashing.
View ArticleSource code checked in, #34953
* Introduce ClientChannel and ServerChannel classes to distinguish between channel initiated by the client or the server. * Increase maximum SSH packet size to 68536 bytes (64 KB + 3000 bytes). *...
View ArticleSource code checked in, #34957
Issue #1930: No connection possible with the same auth method requested multiple times. Improve exception message for authentication failures.
View Article