Merge change Ibb5626c5 into eclair

* changes:
  Stop bringing the wifi interface up on reset.
This commit is contained in:
Android (Google) Code Review
2009-09-30 23:43:58 -04:00

View File

@@ -1237,9 +1237,9 @@ public class WifiStateTracker extends NetworkStateTracker {
/* /*
* Reset connection depends on both the interface and the IP assigned, * Reset connection depends on both the interface and the IP assigned,
* so it should be done before any chance of the IP being lost. * so it should be done before any chance of the IP being lost.
*/ */
NetworkUtils.resetConnections(mInterfaceName); NetworkUtils.resetConnections(mInterfaceName);
// Stop DHCP // Stop DHCP
if (mDhcpTarget != null) { if (mDhcpTarget != null) {
mDhcpTarget.setCancelCallback(true); mDhcpTarget.setCancelCallback(true);
@@ -1248,11 +1248,10 @@ public class WifiStateTracker extends NetworkStateTracker {
if (!NetworkUtils.stopDhcp(mInterfaceName)) { if (!NetworkUtils.stopDhcp(mInterfaceName)) {
Log.e(TAG, "Could not stop DHCP"); Log.e(TAG, "Could not stop DHCP");
} }
NetworkUtils.disableInterface(mInterfaceName); NetworkUtils.disableInterface(mInterfaceName);
if (reenable) { // we no longer net to start the interface (driver does this for us)
NetworkUtils.enableInterface(mInterfaceName); // and it led to problems - removed.
}
} }
/** /**