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

Commit 9c041d01 authored by Gabriel Biren's avatar Gabriel Biren Committed by Android (Google) Code Review
Browse files

Merge "Add list of OuiKeyedData to ApInfo." into main

parents 863bdb52 214578d9
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;
}