From 13d27fc994d89ea23cad97e888ec4ee96e7381bd Mon Sep 17 00:00:00 2001 From: Vysakh A V Date: Wed, 6 May 2026 11:18:49 +0100 Subject: [PATCH 1/2] XF10-696 : Correct MAC address format on agent side (#65) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reason for change: Device details were not displayed correctly on the Cujo cloud. The root cause was that the MAC address was being sent in a non–colon‑separated format. This change ensures the MAC address is properly formatted before being sent from the agent to the cloud during connection. Test Procedure: - Load the updated image on the device. - Verify that the agent successfully connects to the cloud. - Confirm that device and client details are displayed correctly on the cloud portal. Priority: P1 Risk: Low Signed-off-by: Vysakh A V --- source/AdvSecurityDml/cosa_adv_security_internal.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/AdvSecurityDml/cosa_adv_security_internal.c b/source/AdvSecurityDml/cosa_adv_security_internal.c index f722552..e10ddc1 100644 --- a/source/AdvSecurityDml/cosa_adv_security_internal.c +++ b/source/AdvSecurityDml/cosa_adv_security_internal.c @@ -1161,9 +1161,10 @@ CosaSecurityInitialize #elif defined(PON_GATEWAY) // For PON gateway, always use HAL API char deviceMACStr[32] = {0}; - if (platform_hal_GetBaseMacAddress(deviceMACStr) == 0) + rc = platform_hal_GetBaseMacAddress(deviceMACStr); + if ( rc == 0 && deviceMACStr[0] != '\0' ) { - AnscMacToLower(deviceMac, deviceMACStr, sizeof(deviceMac)); + strcpy_s(deviceMac, sizeof(deviceMac), deviceMACStr); CcspTraceInfo(("CcspAdvSecurity: deviceMac [%s]\n", deviceMac)); } else From d0815b268b1ff624e8760807c68ea590bc1c1423 Mon Sep 17 00:00:00 2001 From: bunnam988 Date: Thu, 7 May 2026 10:04:44 +0000 Subject: [PATCH 2/2] Add changelog for release 2.4.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff12975..70697c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [2.4.0](https://github.com/rdkcentral/advanced-security/compare/2.3.0...2.4.0) + +- XF10-696 : Correct MAC address format on agent side [`#65`](https://github.com/rdkcentral/advanced-security/pull/65) +- Merge tag '2.3.0' into develop [`d331dad`](https://github.com/rdkcentral/advanced-security/commit/d331dadcbb34b10327c490055c8e5cf6bdd862b0) + #### [2.3.0](https://github.com/rdkcentral/advanced-security/compare/2.2.1...2.3.0) +> 22 April 2026 + - RDKB-62410, RDKB-62659 : Revert Network Intelligence (NI) support, WDA fix and NI CPU and memory monitoring [`#60`](https://github.com/rdkcentral/advanced-security/pull/60) +- Add changelog for release 2.3.0 [`bb98b47`](https://github.com/rdkcentral/advanced-security/commit/bb98b47c0341a1a3e94ec4050d683dd72c5acfae) - Merge tag '2.2.1' into develop [`8117660`](https://github.com/rdkcentral/advanced-security/commit/81176604c5e971ca77a1ea70d57a9e3dda0a7a1e) #### [2.2.1](https://github.com/rdkcentral/advanced-security/compare/2.2.0...2.2.1)