From: Aleti Nageshwar Reddy Date: Thu, 8 Sep 2022 14:44:16 +0000 (+0530) Subject: Add AP MLD address into BSS command output X-Git-Tag: hostap_2_11~1708 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db99e7341a3788825384d0ee64070e9370afb0a2;p=thirdparty%2Fhostap.git Add AP MLD address into BSS command output Indicate AP MLD address in the response to the BSS control interface command. Signed-off-by: Aleti Nageshwar Reddy --- diff --git a/wpa_supplicant/ctrl_iface.c b/wpa_supplicant/ctrl_iface.c index 4deded99b..1f1c98b97 100644 --- a/wpa_supplicant/ctrl_iface.c +++ b/wpa_supplicant/ctrl_iface.c @@ -5424,6 +5424,15 @@ static int print_bss_info(struct wpa_supplicant *wpa_s, struct wpa_bss *bss, } #endif /* CONFIG_FILS */ + if (!is_zero_ether_addr(bss->mld_addr)) { + ret = os_snprintf(pos, end - pos, + "ap_mld_addr=" MACSTR "\n", + MAC2STR(bss->mld_addr)); + if (os_snprintf_error(end - pos, ret)) + return 0; + pos += ret; + } + if (mask & WPA_BSS_MASK_DELIM) { ret = os_snprintf(pos, end - pos, "====\n"); if (os_snprintf_error(end - pos, ret))