mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
18 lines
478 B
PowerShell
18 lines
478 B
PowerShell
function Open-IcingaTCPClientConnection()
|
|
{
|
|
param(
|
|
[System.Net.Sockets.TcpClient]$Client = $null,
|
|
[Security.Cryptography.X509Certificates.X509Certificate2]$Certificate = $null
|
|
);
|
|
|
|
if ($null -eq $Client -Or $null -eq $Certificate) {
|
|
return $null;
|
|
}
|
|
|
|
$Stream = New-IcingaSSLStream -Client $Client -Certificate $Certificate;
|
|
|
|
return @{
|
|
'Client' = $Client;
|
|
'Stream' = $Stream;
|
|
};
|
|
}
|