icinga-powershell-framework/lib/web/Close-IcingaTCPSocket.psm1

13 lines
184 B
PowerShell
Raw Normal View History

2020-03-24 07:42:14 -04:00
function Close-IcingaTCPSocket()
{
param(
[System.Net.Sockets.TcpListener]$Socket = $null
);
if ($null -eq $Socket) {
return;
}
$Socket.Stop();
}