mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 02:42:35 +00:00
Merge "Notify the AT_PERMANENT_ID_REQ is denied from peer."
This commit is contained in:
committed by
Android (Google) Code Review
commit
9a05af80ae
@@ -39,4 +39,5 @@ interface ISupplicantStaNetworkCallback {
|
||||
oneway void onNetworkEapSimUmtsAuthRequest(in android.hardware.wifi.supplicant.NetworkRequestEapSimUmtsAuthParams params);
|
||||
oneway void onTransitionDisable(in android.hardware.wifi.supplicant.TransitionDisableIndication ind);
|
||||
oneway void onServerCertificateAvailable(in int depth, in byte[] subject, in byte[] certHash, in byte[] certBlob);
|
||||
oneway void onPermanentIdReqDenied();
|
||||
}
|
||||
|
||||
@@ -71,4 +71,11 @@ oneway interface ISupplicantStaNetworkCallback {
|
||||
*/
|
||||
void onServerCertificateAvailable(
|
||||
in int depth, in byte[] subject, in byte[] certHash, in byte[] certBlob);
|
||||
|
||||
/**
|
||||
* Used to notify the AT_PERMANENT_ID_REQ denied event.
|
||||
*
|
||||
* In strict conservative mode, AT_PERMANENT_ID_REQ is denied from eap_peer side.
|
||||
*/
|
||||
void onPermanentIdReqDenied();
|
||||
}
|
||||
|
||||
@@ -100,6 +100,7 @@ class SupplicantStaNetworkCallback : public BnSupplicantStaNetworkCallback {
|
||||
const std::vector<uint8_t>& /* certBlob */) override {
|
||||
return ndk::ScopedAStatus::ok();
|
||||
}
|
||||
::ndk::ScopedAStatus onPermanentIdReqDenied() override { return ndk::ScopedAStatus::ok(); }
|
||||
};
|
||||
|
||||
class SupplicantStaNetworkAidlTest
|
||||
|
||||
Reference in New Issue
Block a user