Jan 06 2026 dev (#387)

* sync code

* update code to support brotli

* update code to support brotli

* update code to support brotli

* sync code

* fix findBrotli

* sync code

* sync code

* sync code

* sync code

---------

Co-authored-by: Ned Wright <nedwright@proton.me>
Co-authored-by: Daniel Eisenberg <danielei@checkpoint.com>
This commit is contained in:
Daniel-Eisenberg
2026-01-13 17:17:52 +02:00
committed by GitHub
parent c1058db57d
commit e7b6e51b31
216 changed files with 12601 additions and 2825 deletions

View File

@@ -98,6 +98,7 @@ enum class Service {
IDA_IDN_BG,
IOT_ACCESS_CONTROL,
HORIZON_TELEMETRY,
ERM,
COUNT
};
@@ -177,6 +178,7 @@ getServiceString(const Service service)
case (Service::IDA_IDN_BG): return "ida-idn-bg";
case (Service::IOT_ACCESS_CONTROL): return "iot-access-control";
case (Service::HORIZON_TELEMETRY): return "horizon-telemetry";
case (Service::ERM): return "erm";
default:
cerr
<< "Internal Error: the provided service ("
@@ -380,6 +382,11 @@ getServiceConfig (const Service service)
filesystem_path + "/conf/cp-nano-horizon-telemetry-debug-conf.json",
log_files_path + "/nano_agent/cp-nano-horizon-telemetry.dbg"
);
case (Service::ERM):
return ServiceConfig(
filesystem_path + "/conf/cp-nano-erm-conf.json",
log_files_path + "/nano_agent/cp-nano-erm.dbg"
);
default:
cerr
<< "Internal Error: the provided service ("