Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9a05af80 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Notify the AT_PERMANENT_ID_REQ is denied from peer."

parents 1024df7c c276eafd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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();
}
+7 −0
Original line number Diff line number Diff line
@@ -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();
}
+1 −0
Original line number Diff line number Diff line
@@ -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