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

Commit 147cf4b8 authored by Erik Kline's avatar Erik Kline Committed by Android (Google) Code Review
Browse files

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

parents ffd1a49c 338317ed
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);