Wayne Ma | a9716ff | 2022-01-12 10:37:04 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2022 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #pragma once |
| 18 | // TODO: deduplicate with the constants in NetdConstants.h. |
| 19 | #include <aidl/android/net/INetd.h> |
| 20 | |
| 21 | using aidl::android::net::INetd; |
| 22 | |
| 23 | enum FirewallRule { ALLOW = INetd::FIREWALL_RULE_ALLOW, DENY = INetd::FIREWALL_RULE_DENY }; |
| 24 | |
| 25 | // ALLOWLIST means the firewall denies all by default, uids must be explicitly ALLOWed |
| 26 | // DENYLIST means the firewall allows all by default, uids must be explicitly DENYed |
| 27 | |
| 28 | enum FirewallType { ALLOWLIST = INetd::FIREWALL_ALLOWLIST, DENYLIST = INetd::FIREWALL_DENYLIST }; |
| 29 | |
Robert Horvath | d945bf0 | 2022-01-27 19:55:16 +0100 | [diff] [blame] | 30 | // LINT.IfChange(firewall_chain) |
Wayne Ma | a9716ff | 2022-01-12 10:37:04 +0800 | [diff] [blame] | 31 | enum ChildChain { |
Robert Horvath | d945bf0 | 2022-01-27 19:55:16 +0100 | [diff] [blame] | 32 | NONE = 0, |
| 33 | DOZABLE = 1, |
| 34 | STANDBY = 2, |
| 35 | POWERSAVE = 3, |
| 36 | RESTRICTED = 4, |
| 37 | LOW_POWER_STANDBY = 5, |
Motomu Utsumi | 966ff7f | 2022-05-11 05:56:26 +0000 | [diff] [blame] | 38 | LOCKDOWN = 6, |
Wayne Ma | a9716ff | 2022-01-12 10:37:04 +0800 | [diff] [blame] | 39 | INVALID_CHAIN |
| 40 | }; |
Robert Horvath | d945bf0 | 2022-01-27 19:55:16 +0100 | [diff] [blame] | 41 | // LINT.ThenChange(packages/modules/Connectivity/framework/src/android/net/ConnectivityManager.java) |