mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
Also re-arranges web content by using old content from lib/web into lib/webserver, while new lib/web contains the proxy configuration. Fixes #19
33 lines
762 B
PowerShell
33 lines
762 B
PowerShell
function New-IcingaTCPSocket()
|
|
{
|
|
param(
|
|
[int]$Port = 0,
|
|
[switch]$Start = $FALSE
|
|
);
|
|
|
|
if ($Port -eq 0) {
|
|
throw 'Please specify a valid port to open a TCP socket for';
|
|
}
|
|
|
|
$TCPSocket = [System.Net.Sockets.TcpListener]$Port;
|
|
|
|
Write-IcingaDebugMessage -Message (
|
|
[string]::Format(
|
|
'Creating new TCP socket on Port {0}. Endpoint configuration {1}',
|
|
$Port,
|
|
$TCPSocket.LocalEndpoint
|
|
)
|
|
);
|
|
|
|
if ($Start) {
|
|
Write-IcingaDebugMessage -Message (
|
|
[string]::Format(
|
|
'Starting TCP socket for endpoint {0}',
|
|
$TCPSocket.LocalEndpoint
|
|
)
|
|
);
|
|
$TCPSocket.Start();
|
|
}
|
|
|
|
return $TCPSocket;
|
|
}
|