Home | History | Annotate | Download | only in p2p

Lines Matching defs:go

18 					      struct p2p_device *go,
28 go->dialog_token++;
29 if (go->dialog_token == 0)
30 go->dialog_token = 1;
31 p2p_buf_add_public_action_hdr(buf, P2P_DEV_DISC_REQ, go->dialog_token);
35 p2p_buf_add_group_id(buf, go->info.p2p_device_addr, go->oper_ssid,
36 go->oper_ssid_len);
60 "P2P: GO acknowledged Device Discoverability Request - wait "
72 struct p2p_device *go;
75 go = p2p_get_device(p2p, dev->member_in_go_dev);
76 if (go == NULL || dev->oper_freq <= 0) {
78 "P2P: Could not find peer entry for GO and frequency "
83 req = p2p_build_dev_disc_req(p2p, go, dev->info.p2p_device_addr);
88 "P2P: Sending Device Discoverability Request to GO " MACSTR
90 MAC2STR(go->info.p2p_device_addr),
93 p2p->pending_client_disc_go = go;
97 if (p2p_send_action(p2p, dev->oper_freq, go->info.p2p_device_addr,
98 p2p->cfg->dev_addr, go->info.p2p_device_addr,
204 "GO Discoverability Request for the target "
233 struct p2p_device *go;
240 go = p2p->pending_client_disc_go;
241 if (go == NULL ||
242 os_memcmp(sa, go->info.p2p_device_addr, ETH_ALEN) != 0) {
256 if (msg.dialog_token != go->dialog_token) {
260 msg.dialog_token, go->dialog_token);
275 go->info.p2p_device_addr, ETH_ALEN) != 0) {
315 "P2P: GO Discoverability Request TX callback: success=%d",
342 "P2P: Received GO Discoverability Request - remain awake for "