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

15 lines
231 B
PowerShell
Raw Normal View History

2020-03-24 07:42:14 -04:00
function Close-IcingaTCPConnection()
{
param(
[System.Net.Sockets.TcpClient]$Client = $null
);
if ($null -eq $Client) {
return;
}
$Client.Close();
$Client.Dispose();
$Client = $null;
}