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

Commit c2051589 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

Merge "Merge "Fix transitioning between non-accept strict policies." am:...

Merge "Merge "Fix transitioning between non-accept strict policies." am: bef2c91b am: 345a2f98 am: dc46874c am: 28f7ed5d am: 3a182d1b"
parents ff2e3126 7f957ec1
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -1838,13 +1838,15 @@ public class NetworkManagementService extends INetworkManagementService.Stub
            // netd does not keep state on strict mode policies, and cannot replace a non-accept
            // netd does not keep state on strict mode policies, and cannot replace a non-accept
            // policy without deleting it first. Rather than add state to netd, just always send
            // policy without deleting it first. Rather than add state to netd, just always send
            // it an accept policy when switching between two non-accept policies.
            // it an accept policy when switching between two non-accept policies.
            // TODO: consider keeping state in netd so we can simplify this code.
            if (oldPolicy != StrictMode.NETWORK_POLICY_ACCEPT &&
            if (oldPolicy != StrictMode.NETWORK_POLICY_ACCEPT &&
                    policy != StrictMode.NETWORK_POLICY_ACCEPT) {
                    policy != StrictMode.NETWORK_POLICY_ACCEPT) {
                applyUidCleartextNetworkPolicy(uid, policy);
                applyUidCleartextNetworkPolicy(uid, StrictMode.NETWORK_POLICY_ACCEPT);
            }
            }
            }

            applyUidCleartextNetworkPolicy(uid, policy);
            applyUidCleartextNetworkPolicy(uid, policy);
        }
        }
    }


    @Override
    @Override
    public boolean isBandwidthControlEnabled() {
    public boolean isBandwidthControlEnabled() {