OSDN Git Service

96759e13fffbe996e2039289f77eb4f1269d8852
[android-x86/system-netd.git] / server / NetdNativeService.h
1 /**
2  * Copyright (c) 2016, 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 #ifndef _NETD_NATIVE_SERVICE_H_
18 #define _NETD_NATIVE_SERVICE_H_
19
20 #include <vector>
21
22 #include <binder/BinderService.h>
23
24 #include "android/net/BnNetd.h"
25 #include "android/net/UidRange.h"
26
27 namespace android {
28 namespace net {
29
30 class NetdNativeService : public BinderService<NetdNativeService>, public BnNetd {
31   public:
32     static status_t start();
33     static char const* getServiceName() { return "netd"; }
34     virtual status_t dump(int fd, const Vector<String16> &args) override;
35
36     binder::Status isAlive(bool *alive) override;
37     binder::Status firewallReplaceUidChain(
38             const String16& chainName, bool isWhitelist,
39             const std::vector<int32_t>& uids, bool *ret) override;
40     binder::Status bandwidthEnableDataSaver(bool enable, bool *ret) override;
41     binder::Status networkRejectNonSecureVpn(bool enable, const std::vector<UidRange>& uids)
42             override;
43 };
44
45 }  // namespace net
46 }  // namespace android
47
48 #endif  // _NETD_NATIVE_SERVICE_H_