wifi: Report mac address of apIfaceInstance in callback
Test: Manuel Test. Hotspot works normally & mac address is correct to
show in framework.
Test: atest VtsHalWifiHostapdV1_0TargetTest
Test: atest VtsHalWifiHostapdV1_1TargetTest
Test: atest VtsHalWifiHostapdV1_2TargetTest
Change-Id: I33f4548257d51fc06fa85af00a92637345364820
diff --git a/wifi/hostapd/1.3/IHostapdCallback.hal b/wifi/hostapd/1.3/IHostapdCallback.hal
index 98cde67..a098d87 100644
--- a/wifi/hostapd/1.3/IHostapdCallback.hal
+++ b/wifi/hostapd/1.3/IHostapdCallback.hal
@@ -38,9 +38,10 @@
* @param freq The operational frequency of the AP.
* @param bandwidth The operational bandwidth of the AP.
* @param generation The operational mode of the AP (e.g. 11ac, 11ax).
+ * @param apIfaceInstanceMacAddress MAC Address of the apIfaceInstance.
*/
oneway onApInstanceInfoChanged(string ifaceName, string apIfaceInstance, uint32_t freq,
- Bandwidth bandwidth, Generation generation);
+ Bandwidth bandwidth, Generation generation, MacAddress apIfaceInstanceMacAddress);
/**
* Invoked when a client connects/disconnects from the hotspot.
@@ -51,7 +52,7 @@
* will have two instances in dual AP mode. The apIfaceInstance can be used
* to identify which instance the callback is from.
* Note: The apIfaceInstance must be same as ifaceName in single AP mode.
- * @param clientAddress Mac Address of hotspot client.
+ * @param clientAddress MAC Address of hotspot client.
* @param isConnected true when client connected, false when client
* disconnected.
*/