• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright (c) 2019, 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 _DNS_RESOLVER_H_
18 #define _DNS_RESOLVER_H_
19 
20 #include "DnsProxyListener.h"
21 #include "DnsQueryLog.h"
22 #include "ResolverController.h"
23 #include "netd_resolv/resolv.h"
24 #include "netdutils/Log.h"
25 
26 namespace android {
27 namespace net {
28 
29 class DnsResolver {
30   public:
31     static DnsResolver* getInstance();
32     bool start();
33     int setLogSeverity(int32_t logSeverity);
34 
35     DnsResolver(DnsResolver const&) = delete;
36     void operator=(DnsResolver const&) = delete;
37 
dnsQueryLog()38     DnsQueryLog& dnsQueryLog() { return mQueryLog; }
39 
40     ResolverController resolverCtrl;
41 
42   private:
43     DnsResolver();
44 
45     DnsProxyListener mDnsProxyListener;
46     DnsQueryLog mQueryLog;
47 };
48 
49 extern DnsResolver* gDnsResolv;
50 extern ResolverNetdCallbacks gResNetdCallbacks;
51 extern netdutils::Log gDnsResolverLog;
52 extern uint64_t gApiLevel;
53 
54 }  // namespace net
55 }  // namespace android
56 
57 #endif  // _DNS_RESOLVER_H_
58