From 649cd94931556ea7f11e3e5127cdd1059c692c8e Mon Sep 17 00:00:00 2001 From: aprasad Date: Wed, 10 Jun 2026 02:15:07 -0700 Subject: [PATCH] RDKBDEV-3450 - The CM is not updated with DNS Name (Option15), instead utopia.net is displayed in LAN side provisioning. Reason for change: Added provisioning to fetch the DHCPv4 Option 15 (Domain Name) value via udhcpc and forward it to the WAN Manager. The WAN Manager then sets the corresponding sysevent, enabling dnsmasq to propagate the domain name to LAN clients. Risks: Low Signed-off-by: Aiswarya Prasad --- source/ccsp/components/include/ipc_msg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/source/ccsp/components/include/ipc_msg.h b/source/ccsp/components/include/ipc_msg.h index 28221fb6..56c1dbdb 100644 --- a/source/ccsp/components/include/ipc_msg.h +++ b/source/ccsp/components/include/ipc_msg.h @@ -131,6 +131,7 @@ typedef struct _ipc_dhcpv4_data_t char ip[BUFLEN_32]; /** New IP address, if addressAssigned==TRUE */ char mask[BUFLEN_32]; /** New netmask, if addressAssigned==TRUE */ char gateway[BUFLEN_32]; /** New gateway, if addressAssigned==TRUE */ + char domain[BUFLEN_64]; /** New domain name, if addressAssigned==TRUE */ char dnsServer[BUFLEN_64]; /** New dns Server, if addressAssigned==TRUE */ char dnsServer1[BUFLEN_64]; /** New dns Server, if addressAssigned==TRUE */ char dhcpcInterface[BUFLEN_64]; /** Dhcp interface name */