icinga-powershell-framework/lib/web/New-IcingaTCPClient.psm1
2020-03-24 12:42:14 +01:00

14 lines
260 B
PowerShell

function New-IcingaTCPClient()
{
param(
[System.Net.Sockets.TcpListener]$Socket = $null
);
if ($null -eq $Socket) {
return $null;
}
[System.Net.Sockets.TcpClient]$Client = $Socket.AcceptTcpClient();
return $Client;
}