1/* 2 * Copyright 2018 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.1; 18 19import @1.0::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_1| method. 28 */ 29interface ISupplicantStaIfaceCallback extends @1.0::ISupplicantStaIfaceCallback { 30 31 /* EapErrorCode: Error code for EAP or EAP Method as per RFC-4186 */ 32 enum EapErrorCode : uint32_t { 33 SIM_GENERAL_FAILURE_AFTER_AUTH = 0, 34 SIM_TEMPORARILY_DENIED = 1026, 35 SIM_NOT_SUBSCRIBED = 1031, 36 SIM_GENERAL_FAILURE_BEFORE_AUTH = 16384, 37 SIM_VENDOR_SPECIFIC_EXPIRED_CERT = 16385, 38 }; 39 40 /** 41 * Used to indicate an EAP authentication failure. 42 */ 43 oneway onEapFailure_1_1(EapErrorCode errorCode); 44}; 45 46