diff options
author | Michael Plass <mplass@google.com> | 2018-10-18 18:41:05 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-10-18 18:41:05 +0000 |
commit | e91ee97bc54facaa7cb7baf4830b7b10eed6bca3 (patch) | |
tree | 8f384974ef55fe4e3a4febe65a83b213c315bbac /service | |
parent | f857825efcf530ff1711c5caac41046c7494733f (diff) | |
parent | 41b87ae313f9fc7ab36fb5fcc070466f33112c25 (diff) |
Merge "[WifiNetworkSelector] use wifiInfo to test sufficiency"
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/WifiNetworkSelector.java | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/service/java/com/android/server/wifi/WifiNetworkSelector.java b/service/java/com/android/server/wifi/WifiNetworkSelector.java index 07fc157d1..4a12b4219 100644 --- a/service/java/com/android/server/wifi/WifiNetworkSelector.java +++ b/service/java/com/android/server/wifi/WifiNetworkSelector.java @@ -21,6 +21,7 @@ import android.annotation.Nullable; import android.content.Context; import android.net.NetworkKey; import android.net.wifi.ScanResult; +import android.net.wifi.SupplicantState; import android.net.wifi.WifiConfiguration; import android.net.wifi.WifiInfo; import android.text.TextUtils; @@ -81,7 +82,7 @@ public class WifiNetworkSelector { /** * Interface for WiFi Network Evaluator * - * A network scorer evaulates all the networks from the scan results and + * A network scorer evaluates all the networks from the scan results and * recommends the best network in its category to connect or roam to. */ public interface NetworkEvaluator { @@ -110,7 +111,7 @@ public class WifiNetworkSelector { * disconnected * @param connected a flag to indicate if ClientModeImpl is in connected * state - * @param untrustedNetworkAllowed a flag to indidate if untrusted networks like + * @param untrustedNetworkAllowed a flag to indicate if untrusted networks like * ephemeral networks are allowed * @param connectableNetworks a list of the ScanDetail and WifiConfiguration * pair which is used by the WifiLastResortWatchdog @@ -137,12 +138,12 @@ public class WifiNetworkSelector { mWifiConfigManager.getConfiguredNetwork(wifiInfo.getNetworkId()); // Currently connected? - if (network == null) { + if (wifiInfo.getSupplicantState() != SupplicantState.COMPLETED) { localLog("No current connected network."); return false; } else { - localLog("Current connected network: " + network.SSID - + " , ID: " + network.networkId); + localLog("Current connected network: " + wifiInfo.getSSID() + + " , ID: " + wifiInfo.getNetworkId()); } int currentRssi = wifiInfo.getRssi(); @@ -156,7 +157,7 @@ public class WifiNetworkSelector { } // Ephemeral network is not qualified. - if (network.ephemeral) { + if (wifiInfo.isEphemeral()) { localLog("Current network is an ephemeral one."); return false; } |