commit | 2b5cdddc50d7dd28fbbb0755092a71b51eec70bb | [log] [tgz] |
---|---|---|
author | Les Lee <lesl@google.com> | Wed Oct 23 04:49:43 2024 +0000 |
committer | Les Lee <lesl@google.com> | Wed Nov 06 00:02:53 2024 +0000 |
tree | 8f293b8c666e91eb63cd8778042626a13f5d0727 | |
parent | 4756cccee021c62c7a8eb4e2c9306423c2c9fd82 [diff] |
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
diff --git a/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/ApInfo.aidl b/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/ApInfo.aidl index 1a66105..f8320c6 100644 --- a/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/ApInfo.aidl +++ b/wifi/hostapd/aidl/aidl_api/android.hardware.wifi.hostapd/current/android/hardware/wifi/hostapd/ApInfo.aidl
@@ -41,4 +41,5 @@ android.hardware.wifi.hostapd.Generation generation; byte[] apIfaceInstanceMacAddress; @nullable android.hardware.wifi.common.OuiKeyedData[] vendorData; + @nullable byte[] mldMacAddress; }
diff --git a/wifi/hostapd/aidl/android/hardware/wifi/hostapd/ApInfo.aidl b/wifi/hostapd/aidl/android/hardware/wifi/hostapd/ApInfo.aidl index f2b2ee6..4e1e1c8 100644 --- a/wifi/hostapd/aidl/android/hardware/wifi/hostapd/ApInfo.aidl +++ b/wifi/hostapd/aidl/android/hardware/wifi/hostapd/ApInfo.aidl
@@ -63,4 +63,9 @@ * Optional vendor-specific information. */ @nullable OuiKeyedData[] vendorData; + + /** + * MAC Address of the multiple link device (MLD) which apIfaceInstance is associated with. + */ + @nullable byte[] mldMacAddress; }