Add P2P Interface Address into ctrl_iface status output
This commit is contained in:
parent
952f119242
commit
6d4747a9a2
1 changed files with 6 additions and 0 deletions
|
@ -606,6 +606,12 @@ static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
|
|||
return pos - buf;
|
||||
pos += ret;
|
||||
}
|
||||
|
||||
ret = os_snprintf(pos, end - pos, "address=" MACSTR "\n",
|
||||
MAC2STR(wpa_s->own_addr));
|
||||
if (ret < 0 || ret >= end - pos)
|
||||
return pos - buf;
|
||||
pos += ret;
|
||||
#endif /* CONFIG_P2P */
|
||||
|
||||
if (wpa_key_mgmt_wpa_ieee8021x(wpa_s->key_mgmt) ||
|
||||
|
|
Loading…
Reference in a new issue