From d3aede7f1fb4008df348af62cbbd39b87d878123 Mon Sep 17 00:00:00 2001 From: W3AXL <29879554+W3AXL@users.noreply.github.com> Date: Mon, 12 Aug 2024 09:22:57 -0400 Subject: [PATCH] added sytem information to host status response --- src/host/Host.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/host/Host.cpp b/src/host/Host.cpp index 3cc19d58..cf7158e0 100644 --- a/src/host/Host.cpp +++ b/src/host/Host.cpp @@ -1298,6 +1298,12 @@ json::object Host::getStatus() uint32_t peerId = networkConf["id"].as(); response["peerId"].set(peerId); + + response["sysId"].set(m_sysId); + response["siteId"].set(m_siteId); + response["p25RfssId"].set(m_p25RfssId); + response["p25NetId"].set(m_p25NetId); + response["p24NAC"].set(m_p25NAC); } yaml::Node modemConfig = m_conf["system"]["modem"];