Commented Issue: GlobalRequestMessage bug [1295]
Version 17229, file \Messages\Connection\GlobalRequestMessage.cs, line 86: Should the default switch case be a return instead of a break? I am receiving a "keepalive@openssh.com" message which results...
View ArticleCommented Unassigned: System.OutOfMemoryException when trying large files in...
Exception of type 'System.OutOfMemoryException' was thrown.mscorlib at System.IO.MemoryStream.set_Capacity(Int32 value) at System.IO.MemoryStream.EnsureCapacity(Int32 value) at...
View ArticleEdited Unassigned: System.OutOfMemoryException when trying large files in...
Exception of type 'System.OutOfMemoryException' was thrown.mscorlib at System.IO.MemoryStream.set_Capacity(Int32 value) at System.IO.MemoryStream.EnsureCapacity(Int32 value) at...
View ArticleEdited Issue: Correct casing of Security/Cryptography/HMAC.cs [1505]
I've just tried to compile the library on Mono/Linux, it builds, however with one glitch. The mentioned file is named HMAC.cs, but is referenced as Security/Cryptography/HMac.cs, so either reference or...
View ArticleCommented Unassigned: Problems with IPSwitch MoveIt SSH server [1785]
Has anyone had problems when using the code with IPSwitch MoveIt ?I can connect OK, list files, rename, upload & download. But when I try to delete a file I get "permission denied".Although if I...
View ArticleCreated Unassigned: Timeout on proxy authentication [1905]
You have neverending loo while authentication through proxy```Session.cswhile (true){ ... switch (statusCode){ case HttpStatusCode.OK: break; default: throw new ProxyException(string.Format("HTTP:...
View ArticleCommented Unassigned: Problems with IPSwitch MoveIt SSH server [1785]
Has anyone had problems when using the code with IPSwitch MoveIt ?I can connect OK, list files, rename, upload & download. But when I try to delete a file I get "permission denied".Although if I...
View ArticleCommented Unassigned: Problems with IPSwitch MoveIt SSH server [1785]
Has anyone had problems when using the code with IPSwitch MoveIt ?I can connect OK, list files, rename, upload & download. But when I try to delete a file I get "permission denied".Although if I...
View ArticleCommented Issue: Timeout on proxy authentication [1905]
You have neverending loo while authentication through proxy```Session.cswhile (true){ ... switch (statusCode){ case HttpStatusCode.OK: break; default: throw new ProxyException(string.Format("HTTP:...
View ArticleCommented Issue: HTTP proxy hangs [1890]
When connecting to an http proxy the Session.ConnectHttp() method gets stuck in an endless loop.this is due to the following code::switch (statusCode){ case HttpStatusCode.OK: break; default: throw new...
View ArticleCommented Unassigned: Incorrect handling of SocketException in...
In SocketRead() in Session.NET.cs there's a dubious handling of SocketExceptions. This is what the original code looked like:``` catch (SocketException exp){ if (exp.SocketErrorCode ==...
View ArticleCreated Unassigned: Timeout on Uploading file [1906]
Hi All, I've tried to search for this issue but haven't had any luck.I am trying to upload a file to an SFTP but it fails when the file is larger than approx 50kb, when the file is smaller than that it...
View ArticleCommented Unassigned: Timeout on Uploading file [1906]
Hi All, I've tried to search for this issue but haven't had any luck.I am trying to upload a file to an SFTP but it fails when the file is larger than approx 50kb, when the file is smaller than that it...
View ArticleCommented Issue: SSH through Proxy Problem [1601]
Hello guys,im trying to connect through a proxy to my SSH server but i get an exception:"__Renci.SshNet.Common.SshOperationTimeoutException: Socket read operation has timed out at...
View ArticleEdited Issue: SSH through Proxy Problem [1601]
Hello guys,im trying to connect through a proxy to my SSH server but i get an exception:"__Renci.SshNet.Common.SshOperationTimeoutException: Socket read operation has timed out at...
View ArticleEdited Issue: HTTP proxy hangs [1890]
When connecting to an http proxy the Session.ConnectHttp() method gets stuck in an endless loop.this is due to the following code::switch (statusCode){ case HttpStatusCode.OK: break; default: throw new...
View ArticleEdited Issue: Timeout on proxy authentication [1905]
You have neverending loo while authentication through proxy```Session.cswhile (true){ ... switch (statusCode){ case HttpStatusCode.OK: break; default: throw new ProxyException(string.Format("HTTP:...
View ArticleClosed Unassigned: Closing forwarded ports does not work [1867]
Dear all,I use PuTTy with the following settings for port forwarding which works fine:putty.exe -ssh user@hostname -L 5555:localhost:5555 -L 5554:localhost:5554 -N -pw passwordNow I want to do this...
View ArticleCommented Unassigned: Sftp BeginUploadFile is not uploading [1629]
I'm trying to send file asynchronously using sftp client BeginUploadFile.Either using stream or string path.See 1.png and 2.png to see the IAsynResult of the callback function.I'm using it with dotnet...
View ArticleCommented Unassigned: Bash problemusing ssh.net Library [1591]
Hi, here is my code```ssh.Connect(); var cmd = ssh.CreateCommand("ls -all"); var asynch = cmd.BeginExecute(delegate(IAsyncResult ar){ Console.WriteLine(cmd.Result);}, null); var cmd1 =...
View Article