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

Commit 214578d9 authored by Gabriel Biren's avatar Gabriel Biren
Browse files

Add list of OuiKeyedData to ApInfo.

Data will be passed to the framework
in the onApInstanceInfoChanged callback.

Bug: 296069900
Test: m
Change-Id: I69eac9a0b92916be9b80e844d6287545454fa203
parent 5ba717d1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -40,4 +40,5 @@ parcelable ApInfo {
  android.hardware.wifi.hostapd.ChannelBandwidth channelBandwidth;
  android.hardware.wifi.hostapd.Generation generation;
  byte[] apIfaceInstanceMacAddress;
  @nullable android.hardware.wifi.common.OuiKeyedData[] vendorData;
}
+6 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

package android.hardware.wifi.hostapd;

import android.hardware.wifi.common.OuiKeyedData;
import android.hardware.wifi.hostapd.ChannelBandwidth;
import android.hardware.wifi.hostapd.Generation;

@@ -57,4 +58,9 @@ parcelable ApInfo {
     * MAC Address of the apIfaceInstance.
     */
    byte[] apIfaceInstanceMacAddress;

    /**
     * Optional vendor-specific information.
     */
    @nullable OuiKeyedData[] vendorData;
}