blob: ae7f7970c3c1918be003c14f3c77cb33d61063bd [file] [log] [blame]
Jimmy Chen1eb82362019-08-28 17:54:29 +08001/*
2 * Copyright 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
17package android.hardware.wifi.supplicant@1.3;
18
19import @1.2::ISupplicantStaIfaceCallback;
20
21/**
22 * Callback Interface exposed by the supplicant service
23 * for each station mode interface (ISupplicantStaIface).
24 *
25 * Clients need to host an instance of this HIDL interface object and
26 * pass a reference of the object to the supplicant via the
27 * corresponding |ISupplicantStaIface.registerCallback_1_3| method.
28 */
29interface ISupplicantStaIfaceCallback extends @1.2::ISupplicantStaIfaceCallback {
30 /**
31 * Indicates PMK cache added event.
32 *
33 * @param expirationTimeInSec expiration time in seconds
34 * @param serializedEntry is serialized PMK cache entry, the content is
35 * opaque for the framework and depends on the native implementation.
36 */
37 oneway onPmkCacheAdded(int64_t expirationTimeInSec, vec<uint8_t> serializedEntry);
Hai Shalom36768042019-12-04 15:50:57 -080038
39 /**
40 * Indicates a DPP success event.
41 */
42 oneway onDppSuccess(DppSuccessCode code);
43
44 /**
45 * Indicates a DPP progress event.
46 */
47 oneway onDppProgress_1_3(DppProgressCode code);
48
49 /**
50 * Indicates a DPP failure event.
51 *
52 * ssid: A string indicating the SSID for the AP that the Enrollee attempted to connect.
53 * channelList: A string containing a list of operating channels and operating classes
54 * indicating the channels that the Enrollee scanned in attempting to discover the AP.
55 * The list conforms to the following ABNF syntax:
56 * channel-list2 = class-and-channels *(“,” class-and-channels)
57 * class-and-channels = class “/” channel *(“,” channel)
58 * class = 1*3DIGIT
59 * channel = 1*3DIGIT
60 * bandList: A list of band parameters that are supported by the Enrollee expressed as the
61 * Operating Class.
62 */
63 oneway onDppFailure_1_3(DppFailureCode code, string ssid, string channelList,
64 vec<uint16_t>bandList);
Jimmy Chen1eb82362019-08-28 17:54:29 +080065};