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

This commit is contained in:
Gabriel Biren
2023-11-27 17:11:02 +00:00
committed by Android (Google) Code Review
2 changed files with 7 additions and 0 deletions

View File

@@ -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;
}

View File

@@ -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;
}