blob: 107e0fc0f6fe078f94df1be9649ddc5b35c7ceb9 [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);
38};