Re: Buffer Size Command Hanging (General questions)
Excellent! Here's mine too in case someone else follows this thread. It takes same time as in ActiveX: [code] static void Main(string[] args)
{
WeOnlyDo.Client.SSH ssh = new WeOnlyDo.Client.SSH();
ssh.Hostname = ******** ;
ssh.Login = ******** ;
ssh.Password = ******** ;
ssh.Blocking = true;
ssh.Connect();
String prompt = kreso@linux ;
// wait for initial prompt
ssh.WaitFor(prompt);
ssh.DataReady = 0;
// send command
ssh.Send( ls -alR /usr
);
String lastline = String.Empty; // this is only thing to test
String totaldata = String.Empty; // this is all between the command and prompt
int i;
do
{
lastline += ssh.Receive();
// remove all lines to buffer
do
{
i = lastline.LastIndexOf('
');
if (i >= 0)
{
totaldata += lastline.Substring(0, i+1);
lastline = lastline.Substring(i + 1);
}
} while (i >= 0);
// check lastline for prompt
i = lastline.IndexOf(prompt);
if (i >= 0)
{
// add existing data to totaldata
totaldata += lastline.Substring(0, i);
lastline = lastline.Substring(i + 1);
break;
}
} while (true);
Console.WriteLine(totaldata);
}
}
[/code]
Complete thread:
- Buffer Size Command Hanging - mmorton, 2009-07-07, 14:32
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-07, 14:43
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 15:27
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-07, 15:44
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 17:30
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 17:41
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 17:56
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 18:15
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 18:21
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 18:49
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 18:53
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 20:08
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 20:53
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 21:23
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 22:04
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 00:31
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 10:28
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 11:04
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 11:16
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 11:29
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 11:33
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 11:45
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 11:54
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 12:03
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 12:54
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 13:13
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 13:17
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 13:21
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 13:24
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 13:28
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 13:35
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 14:04
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 14:57
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 15:10
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 14:57
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 14:04
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 13:35
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 13:28
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 13:24
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 13:21
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 13:17
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 13:13
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 12:54
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 12:03
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 11:54
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 11:45
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 11:33
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 11:29
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 11:16
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-08, 11:04
- Re: Buffer Size Command Hanging - mmorton, 2009-07-08, 10:28
- Re: Buffer Size Command Hanging - wodSupport, 2009-07-08, 00:31
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 22:04
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 21:23
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 20:53
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 20:08
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 18:53
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 18:49
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 18:21
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 18:15
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 17:56
- Re: Buffer Size Command Hanging - woddrazen, 2009-07-07, 17:41
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 17:30
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-07, 15:44
- Re: Buffer Size Command Hanging - mmorton, 2009-07-07, 15:27
- Re: Buffer Size Command Hanging - wodDamir, 2009-07-07, 14:43