Kai Shi | 5118e4f | 2020-08-12 18:56:43 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2020 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 | package android.hardware.wifi.supplicant@1.4; |
| 18 | |
| 19 | import @1.0::SupplicantStatus; |
Hai Shalom | 1cc3ba2 | 2020-10-28 18:09:26 -0700 | [diff] [blame^] | 20 | import ISupplicantStaIfaceCallback; |
Kai Shi | 5118e4f | 2020-08-12 18:56:43 -0700 | [diff] [blame] | 21 | import @1.3::ISupplicantStaIface; |
| 22 | |
| 23 | /** |
| 24 | * Interface exposed by the supplicant for each station mode network |
| 25 | * interface (e.g wlan0) it controls. |
| 26 | */ |
| 27 | interface ISupplicantStaIface extends @1.3::ISupplicantStaIface { |
| 28 | |
| 29 | /** |
| 30 | * Get Connection capabilities |
| 31 | * |
| 32 | * @return status Status of the operation, and connection capabilities. |
| 33 | * Possible status codes: |
| 34 | * |SupplicantStatusCode.SUCCESS|, |
| 35 | * |SupplicantStatusCode.FAILURE_UNKNOWN|, |
| 36 | */ |
| 37 | getConnectionCapabilities_1_4() |
| 38 | generates (SupplicantStatus status, ConnectionCapabilities capabilities); |
| 39 | |
Hai Shalom | 1cc3ba2 | 2020-10-28 18:09:26 -0700 | [diff] [blame^] | 40 | /** |
| 41 | * Register for callbacks from this interface. |
| 42 | * |
| 43 | * These callbacks are invoked for events that are specific to this interface. |
| 44 | * Registration of multiple callback objects is supported. These objects must |
| 45 | * be automatically deleted when the corresponding client process is dead or |
| 46 | * if this interface is removed. |
| 47 | * |
| 48 | * @param callback An instance of the |ISupplicantStaIfaceCallback| HIDL |
| 49 | * interface object. |
| 50 | * @return status Status of the operation. |
| 51 | * Possible status codes: |
| 52 | * |SupplicantStatusCode.SUCCESS|, |
| 53 | * |SupplicantStatusCode.FAILURE_UNKNOWN|, |
| 54 | * |SupplicantStatusCode.FAILURE_IFACE_INVALID| |
| 55 | */ |
| 56 | registerCallback_1_4(ISupplicantStaIfaceCallback callback) |
| 57 | generates (SupplicantStatus status); |
Kai Shi | 5118e4f | 2020-08-12 18:56:43 -0700 | [diff] [blame] | 58 | }; |