Skip to content

Commit

Permalink
RDKTV-34792 - TV intermittently goes offline
Browse files Browse the repository at this point in the history
Reason for change: changed connectivityMonitorFunction function to reset the
IPv4 and IPv6 internet state
Test Procedure: Manual testing with PLUI
Risks: Low
Priority: P1
Signed-off-by: Gururaaja ESR <[email protected]>
  • Loading branch information
gururaajar committed Dec 18, 2024
1 parent 24312a3 commit 3be2c61
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions NetworkManagerConnectivity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -733,8 +733,10 @@ namespace WPEFramework

} while(doConnectivityMonitor);

if(!doContinuousMonitor)
m_InternetState = nsm_internetState::UNKNOWN; // no continous monitor running reset to unknow
m_InternetState = nsm_internetState::UNKNOWN; // no continous monitor running reset to unknow
m_Ipv4InternetState = nsm_internetState::UNKNOWN;
m_Ipv6InternetState = nsm_internetState::UNKNOWN;

NMLOG_DEBUG("initial connectivity monitor exit");
}

Expand Down

0 comments on commit 3be2c61

Please sign in to comment.