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

12 lines
184 B
PowerShell

function Close-IcingaTCPSocket()
{
param(
[System.Net.Sockets.TcpListener]$Socket = $null
);
if ($null -eq $Socket) {
return;
}
$Socket.Stop();
}