Home
last modified time | relevance | path

Searched refs:fst_ies (Results 1 – 12 of 12) sorted by relevance

/external/wpa_supplicant_8/src/fst/
Dfst_iface.h88 const struct wpabuf *fst_ies) in fst_iface_set_ies() argument
90 i->iface_obj.set_ies(i->iface_obj.ctx, fst_ies); in fst_iface_set_ies()
Dfst.h83 void (*set_ies)(void *ctx, const struct wpabuf *fst_ies);
/external/wpa_supplicant_8/src/ap/
Dbeacon.c450 if (hapd->iface->fst_ies) in hostapd_gen_probe_resp()
451 buflen += wpabuf_len(hapd->iface->fst_ies); in hostapd_gen_probe_resp()
550 if (hapd->iface->fst_ies) { in hostapd_gen_probe_resp()
551 os_memcpy(pos, wpabuf_head(hapd->iface->fst_ies), in hostapd_gen_probe_resp()
552 wpabuf_len(hapd->iface->fst_ies)); in hostapd_gen_probe_resp()
553 pos += wpabuf_len(hapd->iface->fst_ies); in hostapd_gen_probe_resp()
1416 if (hapd->iface->fst_ies) in ieee802_11_build_ap_params()
1417 tail_len += wpabuf_len(hapd->iface->fst_ies); in ieee802_11_build_ap_params()
1539 if (hapd->iface->fst_ies) { in ieee802_11_build_ap_params()
1540 os_memcpy(tailpos, wpabuf_head(hapd->iface->fst_ies), in ieee802_11_build_ap_params()
[all …]
Dap_drv_ops.c98 if (add_buf(&beacon, hapd->iface->fst_ies) < 0 || in hostapd_build_ap_extra_ies()
99 add_buf(&proberesp, hapd->iface->fst_ies) < 0 || in hostapd_build_ap_extra_ies()
100 add_buf(&assocresp, hapd->iface->fst_ies) < 0) in hostapd_build_ap_extra_ies()
Dhostapd.c1752 static void fst_hostapd_set_ies_cb(void *ctx, const struct wpabuf *fst_ies) in fst_hostapd_set_ies_cb() argument
1756 if (hapd->iface->fst_ies != fst_ies) { in fst_hostapd_set_ies_cb()
1757 hapd->iface->fst_ies = fst_ies; in fst_hostapd_set_ies_cb()
Dhostapd.h473 const struct wpabuf *fst_ies; member
Dieee802_11.c5032 if (hapd->iface->fst_ies) { in send_assoc_resp()
5033 os_memcpy(p, wpabuf_head(hapd->iface->fst_ies), in send_assoc_resp()
5034 wpabuf_len(hapd->iface->fst_ies)); in send_assoc_resp()
5035 p += wpabuf_len(hapd->iface->fst_ies); in send_assoc_resp()
/external/wpa_supplicant_8/wpa_supplicant/
Dscan.c638 if (wpa_s->fst_ies && in wpa_supplicant_extra_ies()
639 wpabuf_resize(&extra_ie, wpabuf_len(wpa_s->fst_ies)) == 0) in wpa_supplicant_extra_ies()
640 wpabuf_put_buf(extra_ie, wpa_s->fst_ies); in wpa_supplicant_extra_ies()
Dwpa_supplicant.c3085 if (wpa_s->fst_ies) { in wpas_populate_assoc_ies()
3086 int fst_ies_len = wpabuf_len(wpa_s->fst_ies); in wpas_populate_assoc_ies()
3090 wpabuf_head(wpa_s->fst_ies), fst_ies_len); in wpas_populate_assoc_ies()
5651 static void wpas_fst_set_ies_cb(void *ctx, const struct wpabuf *fst_ies) in wpas_fst_set_ies_cb() argument
5655 wpa_hexdump_buf(MSG_DEBUG, "FST: Set IEs", fst_ies); in wpas_fst_set_ies_cb()
5656 wpa_s->fst_ies = fst_ies; in wpas_fst_set_ies_cb()
Dsme.c605 if (wpa_s->fst_ies) { in sme_send_authentication()
606 int fst_ies_len = wpabuf_len(wpa_s->fst_ies); in sme_send_authentication()
612 wpabuf_head(wpa_s->fst_ies), in sme_send_authentication()
Dwpa_supplicant_i.h1258 const struct wpabuf *fst_ies; member
/external/wpa_supplicant_8/hostapd/
Dctrl_iface.c4407 hapd->iface->fst_ies = NULL; in hostapd_global_ctrl_iface_fst_detach()