Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f2eb6fbc authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android Git Automerger
Browse files

am 36a151ab: Merge "Use the old interface when resetting connections" into jb-mr2-dev

* commit '36a151ab':
  Use the old interface when resetting connections
parents a44ff503 36a151ab
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -2261,9 +2261,8 @@ public class ConnectivityService extends IConnectivityManager.Stub {
        boolean resetDns = updateRoutes(newLp, curLp, mNetConfigs[netType].isDefault());

        if (resetMask != 0 || resetDns) {
            LinkProperties linkProperties = mNetTrackers[netType].getLinkProperties();
            if (linkProperties != null) {
                for (String iface : linkProperties.getAllInterfaceNames()) {
            if (curLp != null) {
                for (String iface : curLp.getAllInterfaceNames()) {
                    if (TextUtils.isEmpty(iface) == false) {
                        if (resetMask != 0) {
                            if (DBG) log("resetConnections(" + iface + ", " + resetMask + ")");
@@ -2285,6 +2284,8 @@ public class ConnectivityService extends IConnectivityManager.Stub {
                                if (DBG) loge("Exception resetting dns cache: " + e);
                            }
                        }
                    } else {
                        loge("Can't reset connection for type "+netType);
                    }
                }
            }