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 ANDROID_WIFI_SYSTEM_HOSTAPD_MANAGER_H
18 #define ANDROID_WIFI_SYSTEM_HOSTAPD_MANAGER_H
19 
20 #include <string>
21 #include <vector>
22 
23 #include <android-base/macros.h>
24 
25 namespace android {
26 namespace wifi_system {
27 
28 class HostapdManager {
29  public:
30   enum class EncryptionType {
31     kOpen,
32     kWpa,
33     kWpa2,  // Strongly prefer this if at all possible.
34   };
35 
36   HostapdManager() = default;
37   virtual ~HostapdManager() = default;
38 
39   // Request that hostapd be started.
40   // Returns true on success.
41   virtual bool StartHostapd();
42 
43   // Request that a running instance of hostapd be stopped.
44   // Returns true on success.
45   virtual bool StopHostapd();
46 
47  private:
48   DISALLOW_COPY_AND_ASSIGN(HostapdManager);
49 };  // class HostapdManager
50 
51 }  // namespace wifi_system
52 }  // namespace android
53 
54 #endif  // ANDROID_WIFI_SYSTEM_HOSTAPD_MANAGER_H
55