Home | History | Annotate | Download | only in p2p

Lines Matching defs:noa

4468 static struct wpabuf * p2p_build_presence_resp(u8 status, const u8 *noa,
4481 if (noa) {
4484 wpabuf_put_data(resp, noa, noa_len);
4503 u8 noa[50];
4528 if (msg.noa == NULL) {
4529 p2p_dbg(p2p, "No NoA attribute in P2P Presence Request");
4534 status = p2p_group_presence_req(group, sa, msg.noa, msg.noa_len);
4538 noa_len = p2p->cfg->get_noa(p2p->cfg->cb_ctx, da, noa,
4539 sizeof(noa));
4542 resp = p2p_build_presence_resp(status, noa_len > 0 ? noa : NULL,
4571 if (msg.status == NULL || msg.noa == NULL) {
4572 p2p_dbg(p2p, "No Status or NoA attribute in P2P Presence Response");
4579 msg.noa, msg.noa_len);
4590 wpa_hexdump(MSG_DEBUG, "P2P: P2P Presence Response - NoA",
4591 msg.noa, msg.noa_len);
4592 /* TODO: process NoA */