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

19 lines
340 B
PowerShell

function Close-IcingaTCPSocket()
{
param(
[System.Net.Sockets.TcpListener]$Socket = $null
);
if ($null -eq $Socket) {
return;
}
Write-IcingaDebugMessage -Message (
[string]::Format(
'Closing TCP socket {0}',
$Socket.LocalEndpoint
)
);
$Socket.Stop();
}