mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
15 lines
354 B
PowerShell
15 lines
354 B
PowerShell
|
|
function Send-IcingaTCPClientMessage()
|
||
|
|
{
|
||
|
|
param(
|
||
|
|
[Hashtable]$Message = @{},
|
||
|
|
[System.Net.Security.SslStream]$Stream = $null
|
||
|
|
);
|
||
|
|
|
||
|
|
if ($null -eq $Message -Or $Message.Count -eq 0 -Or $Message.length -eq 0) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
$Stream.Write($Message.message, 0, $Message.length);
|
||
|
|
$Stream.Flush();
|
||
|
|
}
|