P2P: Add p2p_client_list support for FullMAC Persistent GO
Currently, FullMAC Persistent GO can't use p2p_client_list because its own hapd->p2p_group is NULL at ap_sta_set_authorized(). This patch changes the processing to use sta->p2p_ie instead of p2p_group_get_dev_addr() on FullMAC GO. Signed-hostap: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
parent
17706d1c76
commit
c2d76aa624
3 changed files with 40 additions and 17 deletions
|
@ -2167,30 +2167,35 @@ int p2p_scan_result_text(const u8 *ies, size_t ies_len, char *buf, char *end)
|
|||
}
|
||||
|
||||
|
||||
int p2p_parse_dev_addr_in_p2p_ie(struct wpabuf *p2p_ie, u8 *dev_addr)
|
||||
{
|
||||
struct p2p_message msg;
|
||||
|
||||
os_memset(&msg, 0, sizeof(msg));
|
||||
if (p2p_parse_p2p_ie(p2p_ie, &msg))
|
||||
return -1;
|
||||
|
||||
if (msg.p2p_device_addr) {
|
||||
os_memcpy(dev_addr, msg.p2p_device_addr, ETH_ALEN);
|
||||
return 0;
|
||||
} else if (msg.device_id) {
|
||||
os_memcpy(dev_addr, msg.device_id, ETH_ALEN);
|
||||
return 0;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
int p2p_parse_dev_addr(const u8 *ies, size_t ies_len, u8 *dev_addr)
|
||||
{
|
||||
struct wpabuf *p2p_ie;
|
||||
struct p2p_message msg;
|
||||
int ret = -1;
|
||||
int ret;
|
||||
|
||||
p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
|
||||
P2P_IE_VENDOR_TYPE);
|
||||
if (p2p_ie == NULL)
|
||||
return -1;
|
||||
os_memset(&msg, 0, sizeof(msg));
|
||||
if (p2p_parse_p2p_ie(p2p_ie, &msg)) {
|
||||
wpabuf_free(p2p_ie);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (msg.p2p_device_addr) {
|
||||
os_memcpy(dev_addr, msg.p2p_device_addr, ETH_ALEN);
|
||||
ret = 0;
|
||||
} else if (msg.device_id) {
|
||||
os_memcpy(dev_addr, msg.device_id, ETH_ALEN);
|
||||
ret = 0;
|
||||
}
|
||||
|
||||
ret = p2p_parse_dev_addr_in_p2p_ie(p2p_ie, dev_addr);
|
||||
wpabuf_free(p2p_ie);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue