|
@@ -134,6 +134,9 @@ static struct wpabuf * p2p_build_invitation_resp(struct p2p_data *p2p,
|
|
|
extra = wpabuf_len(wfd_ie);
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
|
+ if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_INV_RESP])
|
|
|
+ extra += wpabuf_len(p2p->vendor_elem[VENDOR_ELEM_P2P_INV_RESP]);
|
|
|
+
|
|
|
buf = wpabuf_alloc(1000 + extra);
|
|
|
if (buf == NULL)
|
|
|
return NULL;
|
|
@@ -158,6 +161,9 @@ static struct wpabuf * p2p_build_invitation_resp(struct p2p_data *p2p,
|
|
|
wpabuf_put_buf(buf, wfd_ie);
|
|
|
#endif /* CONFIG_WIFI_DISPLAY */
|
|
|
|
|
|
+ if (p2p->vendor_elem && p2p->vendor_elem[VENDOR_ELEM_P2P_INV_RESP])
|
|
|
+ wpabuf_put_buf(buf, p2p->vendor_elem[VENDOR_ELEM_P2P_INV_RESP]);
|
|
|
+
|
|
|
return buf;
|
|
|
}
|
|
|
|