Skip to content

Commit

Permalink
Initialized IPstatus to lost in NetworkManagerInternalEventHandler fo…
Browse files Browse the repository at this point in the history
…r IARM_BUS_NETWORK_MANAGER_EVENT_INTERFACE_IPADDRESS (#42)
  • Loading branch information
gururaajar authored and karuna2git committed Nov 29, 2024
1 parent 4888cf4 commit 9e0e915
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions NetworkManagerRDKProxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -457,11 +457,12 @@ namespace WPEFramework
{
IARM_BUS_NetSrvMgr_Iface_EventInterfaceIPAddress_t *e = (IARM_BUS_NetSrvMgr_Iface_EventInterfaceIPAddress_t*) data;
interface = e->interface;
NMLOG_INFO ("IARM_BUS_NETWORK_MANAGER_EVENT_INTERFACE_IPADDRESS :: %s -- %s", interface.c_str(), e->ip_address);
NMLOG_INFO ("IARM_BUS_NETWORK_MANAGER_EVENT_INTERFACE_IPADDRESS: %s - %s - %s", interface.c_str(), e->ip_address, e->acquired?"Acquired":"Lost"
);

if(interface == "eth0" || interface == "wlan0") {
string ipversion("IPv4");
Exchange::INetworkManager::IPStatus status;
Exchange::INetworkManager::IPStatus status = Exchange::INetworkManager::IP_LOST;

if (e->is_ipv6)
ipversion = "IPv6";
Expand Down

0 comments on commit 9e0e915

Please sign in to comment.