Skip to content

Commit

Permalink
RDK-47625 - Implement all the network API (rdkcentral#5012)
Browse files Browse the repository at this point in the history
Reason for change: Added GetWifiState API to fix the issue of Network
manager plugin not getting activated with desktop
Test Procedure: Build and verified with desktop
Risks: Low
Priority: P1
Signed-off-by: Gururaaja ESR <[email protected]>
  • Loading branch information
gururaajar authored and cmuhammedrafi committed Mar 18, 2024
1 parent a452fad commit ecab875
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions NetworkManager/service/NetworkManagerGnomeProxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -704,5 +704,13 @@ namespace WPEFramework
uint32_t rc = Core::ERROR_RPC_CALL_FAILED;
return rc;
}

uint32_t NetworkManagerImplementation::GetWifiState(WiFiState &state)
{
uint32_t rc = Core::ERROR_NONE;

state = Exchange::INetworkManager::WIFI_STATE_CONNECTED;
return rc;
}
}
}

0 comments on commit ecab875

Please sign in to comment.