diff options
author | Irfan Sheriff <isheriff@google.com> | 2012-05-31 11:28:36 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-05-31 11:28:36 -0700 |
commit | ce9b5c7611954fba91f4983bd41c0507b9931046 (patch) | |
tree | 881303483a30537a6bc185da75a8cfd86f2ceff6 /wifi/java/android/net | |
parent | bde32efa209acb47324add8981577af1fa410574 (diff) | |
parent | ae094b27159864cb47015b96d18c5d32ef84fdc1 (diff) | |
download | frameworks_base-ce9b5c7611954fba91f4983bd41c0507b9931046.zip frameworks_base-ce9b5c7611954fba91f4983bd41c0507b9931046.tar.gz frameworks_base-ce9b5c7611954fba91f4983bd41c0507b9931046.tar.bz2 |
Merge "Fix walled garden detection on nakasi" into jb-dev
Diffstat (limited to 'wifi/java/android/net')
-rw-r--r-- | wifi/java/android/net/wifi/WifiWatchdogStateMachine.java | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/wifi/java/android/net/wifi/WifiWatchdogStateMachine.java b/wifi/java/android/net/wifi/WifiWatchdogStateMachine.java index 5220d04..1a42f93 100644 --- a/wifi/java/android/net/wifi/WifiWatchdogStateMachine.java +++ b/wifi/java/android/net/wifi/WifiWatchdogStateMachine.java @@ -263,12 +263,19 @@ public class WifiWatchdogStateMachine extends StateMachine { Context.CONNECTIVITY_SERVICE); sWifiOnly = (cm.isNetworkSupported(ConnectivityManager.TYPE_MOBILE) == false); - // Disable for wifi only devices. - if (Settings.Secure.getString(contentResolver, Settings.Secure.WIFI_WATCHDOG_ON) == null - && sWifiOnly) { - log("Disabling watchog for wi-fi only device"); - putSettingsBoolean(contentResolver, Settings.Secure.WIFI_WATCHDOG_ON, false); + // Watchdog is always enabled. Poor network detection & walled garden detection + // can individually be turned on/off + // TODO: Remove this setting & clean up state machine since we always have + // watchdog in an enabled state + putSettingsBoolean(contentResolver, Settings.Secure.WIFI_WATCHDOG_ON, true); + + // Disable poor network avoidance, but keep watchdog active for walled garden detection + if (sWifiOnly) { + log("Disabling poor network avoidance for wi-fi only device"); + putSettingsBoolean(contentResolver, + Settings.Secure.WIFI_WATCHDOG_POOR_NETWORK_TEST_ENABLED, false); } + WifiWatchdogStateMachine wwsm = new WifiWatchdogStateMachine(context); wwsm.start(); return wwsm; |