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

Commit 2b5cdddc authored by Les Lee's avatar Les Lee
Browse files

wifi: Adds MLD address in ApInfo for MLO SAP

The multiple link operation MLD will use one MLD address for two links.
Adds MLD address will allow the frameworks/Settings to know current dual AP
is a MLO Soft AP.

Bug: 362355566
Test: TH
Change-Id: Id1eac069e3faa3bbd86ccd01f4f216946cb7a9cc
parent 4756ccce
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -41,4 +41,5 @@ parcelable ApInfo {
  android.hardware.wifi.hostapd.Generation generation;
  android.hardware.wifi.hostapd.Generation generation;
  byte[] apIfaceInstanceMacAddress;
  byte[] apIfaceInstanceMacAddress;
  @nullable android.hardware.wifi.common.OuiKeyedData[] vendorData;
  @nullable android.hardware.wifi.common.OuiKeyedData[] vendorData;
  @nullable byte[] mldMacAddress;
}
}
+5 −0
Original line number Original line Diff line number Diff line
@@ -63,4 +63,9 @@ parcelable ApInfo {
     * Optional vendor-specific information.
     * Optional vendor-specific information.
     */
     */
    @nullable OuiKeyedData[] vendorData;
    @nullable OuiKeyedData[] vendorData;

    /**
     * MAC Address of the multiple link device (MLD) which apIfaceInstance is associated with.
     */
    @nullable byte[] mldMacAddress;
}
}