Rob Hague

Results 133 comments of Rob Hague

> 2. It provides a worthwhile performance improvement over the BouncyCastle path Any idea here?

I don't think there is anything like that in the library already. I think the closest thing currently is #864

Can you inspect the value of `command.Error` when the exception is thrown (either by breaking when it's thrown or printing the value in a `catch` block)? edit: even just `command.Result`...

This is some dumb, untested code but you could try it for debugging: ```c# using (SshCommand command = ...) { IAsyncResult result = command.BeginExecute(); Thread.Sleep(5000); command.OutputStream.Flush(); command.ExtendedOutputStream.Flush(); byte[] readBuffer =...

Glad you got it working I was unclear, but I was looking for the results of running e.g. `ssh -T user@host ping` from the command line, rather than from SSH.NET....

@LadderLogic as above, the root cause is that the device requires an interactive session (pseudo-termainal) to be allocated, which `SshCommand` does not do. The workaround is to use `ShellStream`, which...

My understanding is the same as yours, that raw sockets are not permitted in the browser. The library uses sockets for TCP, which SSH uses for transport. As far as...

From reading your StackOverflow post it sounds like your problem is that commands are working but taking a long time. This issue is about commands not working at all, so...

There has been no recent investigation into SFTP performance that I know of. If you make an investigation, please do share your findings. Thanks

Feel free to change the cast rule depending on your preference (mine would be to change it) ```diff diff --git a/.editorconfig b/.editorconfig index d3d940a8..abe8bd6f 100644 --- a/.editorconfig +++ b/.editorconfig @@...