TCP-клиент Powershell с обработкой ошибок - PullRequest
0 голосов
/ 02 ноября 2018

Мне нужна помощь с TCP-клиентом Powershell, который может отслеживать, когда сервер закрывает соединение. Начальная точка для этого кода от здесь и выглядит следующим образом:

## Connect-Computer.ps1 
## Interact with a service on a remote TCP port 
param( 
    [string] $remoteHost = "localhost", 
    [int] $port = 23
     ) 

try
{
    ## Open the socket, and connect to the computer on the specified port 
    write-host "Connecting to $remoteHost on port $port"
    $socket = new-object System.Net.Sockets.TcpClient($remoteHost, $port) 
    if($socket -eq $null) { return; } 

    $stream = $socket.GetStream() 
    $writer = new-object System.IO.StreamWriter($stream) 

    $buffer = new-object System.Byte[] 1024 
    $encoding = new-object System.Text.AsciiEncoding 

    while($true) 
    { 
       ## Allow data to buffer for a bit 
       start-sleep -m 500 

       ## Read all the data available from the stream, writing it to the 
       ## screen when done. 
       while($stream.DataAvailable)  
       {  
          $read = $stream.Read($buffer, 0, 1024)    
          write-host -n ($encoding.GetString($buffer, 0, $read))  
       } 

       ## Read the user's command, quitting if they hit ^D 
       $command = read-host

       ## Write their command to the remote host      
       $writer.WriteLine($command) 
       $writer.Flush() 
    } 
}
finally
{
    ## Close the streams 
    $writer.Close() 
    $stream.Close()
}

Проблема в том, что когда сервер закрывает порт, клиент продолжает ждать. Как я могу использовать буферизованное чтение, но все же проверить, открыт ли порт? Мне не нужно сразу знать, закрывается ли порт, через несколько минут.

Заранее спасибо за любую помощь.

...