-
Notifications
You must be signed in to change notification settings - Fork 57
RDKCOM-5595: RDKBDEV-3450 The CM is not updated with DNS Name (Option15), instead utopia.net is displayed in LAN side provisioning. #214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -83,6 +83,7 @@ static ANSC_STATUS wanmgr_dchpv4_get_ipc_msg_info(WANMGR_IPV4_DATA* pDhcpv4Data, | |
| memcpy(pDhcpv4Data->gateway, pIpcIpv4Data->gateway, BUFLEN_32); | ||
| memcpy(pDhcpv4Data->dnsServer, pIpcIpv4Data->dnsServer, BUFLEN_64); | ||
| memcpy(pDhcpv4Data->dnsServer1, pIpcIpv4Data->dnsServer1, BUFLEN_64); | ||
| snprintf(pDhcpv4Data->domain, sizeof(pDhcpv4Data->domain), "%s", pIpcIpv4Data->domain); | ||
|
aprasad-97 marked this conversation as resolved.
|
||
| #if defined(FEATURE_RDKB_CONFIGURABLE_WAN_INTERFACE) | ||
| memcpy(pDhcpv4Data->timeZone, pIpcIpv4Data->timeZone, BUFLEN_64); | ||
| pDhcpv4Data->isTimeOffsetAssigned = pIpcIpv4Data->isTimeOffsetAssigned; | ||
|
|
@@ -146,6 +147,7 @@ ANSC_STATUS wanmgr_handle_dhcpv4_event_data(DML_VIRTUAL_IFACE* pVirtIf) | |
| if (strcmp(pVirtIf->IP.Ipv4Data.ip, pDhcpcInfo->ip) || | ||
| strcmp(pVirtIf->IP.Ipv4Data.mask, pDhcpcInfo->mask) || | ||
| strcmp(pVirtIf->IP.Ipv4Data.gateway, pDhcpcInfo->gateway) || | ||
| strcmp(pVirtIf->IP.Ipv4Data.domain, pDhcpcInfo->domain) || | ||
| strcmp(pVirtIf->IP.Ipv4Data.dnsServer, pDhcpcInfo->dnsServer) || | ||
| strcmp(pVirtIf->IP.Ipv4Data.dnsServer1, pDhcpcInfo->dnsServer1)) | ||
| { | ||
|
|
@@ -167,10 +169,11 @@ ANSC_STATUS wanmgr_handle_dhcpv4_event_data(DML_VIRTUAL_IFACE* pVirtIf) | |
|
|
||
| if (pDhcpcInfo->addressAssigned) | ||
| { | ||
| CcspTraceInfo(("assigned ip=%s netmask=%s gateway=%s dns server=%s,%s leasetime = %d, rebindtime = %d, renewaltime = %d, dhcp state = %s mtu = %d\n", | ||
| CcspTraceInfo(("assigned ip=%s netmask=%s gateway=%s domain=%s dns server=%s,%s leasetime = %d, rebindtime = %d, renewaltime = %d, dhcp state = %s mtu = %d\n", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please check if we are handling the DHCPmanager enabled case . There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @S-Parthiban-Selvaraj based on a previous discussion I had with Aiswarya this change is not applicable for platforms where DHCPManager is enabled |
||
| pDhcpcInfo->ip, | ||
| pDhcpcInfo->mask, | ||
| pDhcpcInfo->gateway, | ||
| pDhcpcInfo->domain, | ||
| pDhcpcInfo->dnsServer, | ||
| pDhcpcInfo->dnsServer1, | ||
| pDhcpcInfo->leaseTime, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.