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

Commit 338317ed authored by Erik Kline's avatar Erik Kline
Browse files

Log interface name and uid when filtering a blocked network.

Bug: 18707263
Change-Id: Ide9a1670a97eae787b785933de0c80750c2b5601
parent 2bc2a994
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);