1*8542734aSAndroid Build Coastguard Worker /* 2*8542734aSAndroid Build Coastguard Worker * Copyright (C) 2019 The Android Open Source Project 3*8542734aSAndroid Build Coastguard Worker * 4*8542734aSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License"); 5*8542734aSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License. 6*8542734aSAndroid Build Coastguard Worker * You may obtain a copy of the License at 7*8542734aSAndroid Build Coastguard Worker * 8*8542734aSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0 9*8542734aSAndroid Build Coastguard Worker * 10*8542734aSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software 11*8542734aSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS, 12*8542734aSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*8542734aSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and 14*8542734aSAndroid Build Coastguard Worker * limitations under the License. 15*8542734aSAndroid Build Coastguard Worker */ 16*8542734aSAndroid Build Coastguard Worker 17*8542734aSAndroid Build Coastguard Worker #ifndef _NETD_PERMISSIONS_H 18*8542734aSAndroid Build Coastguard Worker #define _NETD_PERMISSIONS_H 19*8542734aSAndroid Build Coastguard Worker 20*8542734aSAndroid Build Coastguard Worker inline constexpr char PERM_CONNECTIVITY_INTERNAL[] = "android.permission.CONNECTIVITY_INTERNAL"; 21*8542734aSAndroid Build Coastguard Worker inline constexpr char PERM_NETWORK_STACK[] = "android.permission.NETWORK_STACK"; 22*8542734aSAndroid Build Coastguard Worker inline constexpr char PERM_MAINLINE_NETWORK_STACK[] = "android.permission.MAINLINE_NETWORK_STACK"; 23*8542734aSAndroid Build Coastguard Worker inline constexpr char PERM_DUMP[] = "android.permission.DUMP"; 24*8542734aSAndroid Build Coastguard Worker inline constexpr char PERM_CONNECTIVITY_USE_RESTRICTED_NETWORKS[] = 25*8542734aSAndroid Build Coastguard Worker "android.permission.CONNECTIVITY_USE_RESTRICTED_NETWORKS"; 26*8542734aSAndroid Build Coastguard Worker inline constexpr char PERM_NETWORK_BYPASS_PRIVATE_DNS[] = 27*8542734aSAndroid Build Coastguard Worker "android.permission.NETWORK_BYPASS_PRIVATE_DNS"; 28*8542734aSAndroid Build Coastguard Worker 29*8542734aSAndroid Build Coastguard Worker #endif // _NETD_PERMISSIONS_H 30