Re: Buffer Size Command Hanging (General questions)
I have managed to write some code based on what you suggested and it works.
[code]
sshConnection.Blocking = False
sshConnection.Send( show * /identifier & vbCrLf)
Dim data_retrieved As New System.Text.StringBuilder
Do
data_retrieved.Append(sshConnection.Receive().Replace( , ))
Loop While Not data_retrieved.ToString.EndsWith( UAF> )
[/code]