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

Commit 4f361503 authored by Erik Kline's avatar Erik Kline Committed by android-build-merger
Browse files

Merge "Log interface name and uid when filtering a blocked network." into lmp-mr1-dev

automerge: 147cf4b8

* commit '147cf4b8':
  Log interface name and uid when filtering a blocked network.
parents 0ac8dfa3 147cf4b8
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -907,7 +907,10 @@ public class ConnectivityService extends IConnectivityManager.Stub
            // network is blocked; clone and override state
            info = new NetworkInfo(info);
            info.setDetailedState(DetailedState.BLOCKED, null, null);
            if (DBG) log("returning Blocked NetworkInfo");
            if (DBG) {
                log("returning Blocked NetworkInfo for ifname=" +
                        lp.getInterfaceName() + ", uid=" + uid);
            }
        }
        if (info != null && mLockdownTracker != null) {
            info = mLockdownTracker.augmentNetworkInfo(info);