P2P: Add Group Info attr into Probe Response in GO without clients
While there is no real value in this, the spec seems to mark this attribute as mandatory from GO, so better included it regardless of whether we have clients or not (the attribute is empty in case no clients are connected).
This commit is contained in:
parent
80c9582a5f
commit
55a625799f
1 changed files with 8 additions and 10 deletions
|
@ -198,7 +198,6 @@ static struct wpabuf * p2p_group_build_probe_resp_ie(struct p2p_group *group)
|
||||||
/* P2P Device Info */
|
/* P2P Device Info */
|
||||||
p2p_buf_add_device_info(ie, group->p2p, NULL);
|
p2p_buf_add_device_info(ie, group->p2p, NULL);
|
||||||
|
|
||||||
if (group->members) {
|
|
||||||
/* P2P Group Info */
|
/* P2P Group Info */
|
||||||
group_info = wpabuf_put(ie, 0);
|
group_info = wpabuf_put(ie, 0);
|
||||||
wpabuf_put_u8(ie, P2P_ATTR_GROUP_INFO);
|
wpabuf_put_u8(ie, P2P_ATTR_GROUP_INFO);
|
||||||
|
@ -207,7 +206,6 @@ static struct wpabuf * p2p_group_build_probe_resp_ie(struct p2p_group *group)
|
||||||
p2p_client_info(ie, m);
|
p2p_client_info(ie, m);
|
||||||
WPA_PUT_LE16(group_info + 1,
|
WPA_PUT_LE16(group_info + 1,
|
||||||
(u8 *) wpabuf_put(ie, 0) - group_info - 3);
|
(u8 *) wpabuf_put(ie, 0) - group_info - 3);
|
||||||
}
|
|
||||||
|
|
||||||
p2p_buf_update_ie_hdr(ie, len);
|
p2p_buf_update_ie_hdr(ie, len);
|
||||||
return ie;
|
return ie;
|
||||||
|
|
Loading…
Reference in a new issue