Home | History | Annotate | Download | only in p2p

Lines Matching refs:noa

3731 static struct wpabuf * p2p_build_presence_resp(u8 status, const u8 *noa,
3744 if (noa) {
3747 wpabuf_put_data(resp, noa, noa_len);
3766 u8 noa[50];
3791 if (msg.noa == NULL) {
3792 p2p_dbg(p2p, "No NoA attribute in P2P Presence Request");
3797 status = p2p_group_presence_req(group, sa, msg.noa, msg.noa_len);
3801 noa_len = p2p->cfg->get_noa(p2p->cfg->cb_ctx, da, noa,
3802 sizeof(noa));
3805 resp = p2p_build_presence_resp(status, noa_len > 0 ? noa : NULL,
3834 if (msg.status == NULL || msg.noa == NULL) {
3835 p2p_dbg(p2p, "No Status or NoA attribute in P2P Presence Response");
3848 wpa_hexdump(MSG_DEBUG, "P2P: P2P Presence Response - NoA",
3849 msg.noa, msg.noa_len);
3850 /* TODO: process NoA */