Skip to content
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

DELIA-66587 [RDKE][Xione UK] Fail to do SSH from GDF devices/jump server #19

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NetworkManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace WPEFramework
_notification(this)
{
// Don't do any work in the constructor - all set up should be done in Initialize
m_primaryInterfaceCache = "wlan0";
m_primaryInterfaceCache = "eth0";
}

NetworkManager::~NetworkManager()
Expand Down
2 changes: 2 additions & 0 deletions NetworkManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ namespace WPEFramework
result["state"] = static_cast <int> (state);
_parent.Notify("onWiFiStateChange", result);
_parent.m_wifiStateCache = state;
if(Exchange::INetworkManager::WiFiState::WIFI_STATE_CONNECTED == state || Exchange::INetworkManager::WiFiState::WIFI_STATE_DISCONNECTED == state)
_parent.m_primaryInterfaceCache.reset();
}

void onWiFiSignalStrengthChange(const string ssid, const string signalLevel, const Exchange::INetworkManager::WiFiSignalQuality signalQuality) override
Expand Down
Loading