Home | History | Annotate | Download | only in ap

Lines Matching refs:resp

195 	struct ieee80211_mgmt *resp;
211 resp = os_zalloc(buflen);
212 if (resp == NULL)
215 epos = ((u8 *) resp) + MAX_PROBERESP_LEN;
217 resp->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
220 os_memcpy(resp->da, req->sa, ETH_ALEN);
221 os_memcpy(resp->sa, hapd->own_addr, ETH_ALEN);
223 os_memcpy(resp->bssid, hapd->own_addr, ETH_ALEN);
224 resp->u.probe_resp.beacon_int =
228 resp->u.probe_resp.capab_info =
231 pos = resp->u.probe_resp.variable;
308 *resp_len = pos - (u8 *) resp;
309 return (u8 *) resp;
357 u8 *resp;
512 resp = hostapd_gen_probe_resp(hapd, sta, mgmt, elems.p2p != NULL,
514 if (resp == NULL)
524 if (hostapd_drv_send_mlme(hapd, resp, resp_len, noack) < 0)
527 os_free(resp);
578 u8 *resp = NULL;
723 resp = hostapd_probe_resp_offloads(hapd, &resp_len);
731 params.proberesp = resp;
795 os_free(resp);