Home
last modified time | relevance | path

Searched refs:lci (Results 1 – 20 of 20) sorted by relevance

/freebsd-14-stable/contrib/wpa/src/ap/
HDneighbor_db.c50 char lci[2 * 255 + 1]; in hostapd_neighbor_show() local
64 lci[0] = '\0'; in hostapd_neighbor_show()
65 if (nr->lci) in hostapd_neighbor_show()
66 wpa_snprintf_hex(lci, sizeof(lci), in hostapd_neighbor_show()
67 wpabuf_head(nr->lci), in hostapd_neighbor_show()
68 wpabuf_len(nr->lci)); in hostapd_neighbor_show()
80 nr->lci ? " lci=" : "", lci, in hostapd_neighbor_show()
96 wpabuf_free(nr->lci); in hostapd_neighbor_clear_entry()
97 nr->lci = NULL; in hostapd_neighbor_clear_entry()
126 const struct wpabuf *nr, const struct wpabuf *lci, in hostapd_neighbor_set() argument
[all …]
HDrrm.c189 if (send_lci && nr->lci) in hostapd_neighbor_report_len()
190 len += 2 + wpabuf_len(nr->lci); in hostapd_neighbor_report_len()
201 struct wpa_ssid_value *ssid, u8 lci, in hostapd_send_nei_report_resp() argument
230 send_lci = (lci != 0) && hostapd_check_lci_age(nr, lci_max_age); in hostapd_send_nei_report_resp()
247 if (send_lci && nr->lci) { in hostapd_send_nei_report_resp()
249 wpabuf_put_u8(buf, wpabuf_len(nr->lci)); in hostapd_send_nei_report_resp()
255 wpabuf_put_buf(buf, nr->lci); in hostapd_send_nei_report_resp()
256 *msmt_token = lci; in hostapd_send_nei_report_resp()
287 u8 lci = 0, civic = 0; /* Measurement tokens */ in hostapd_handle_nei_report_req() local
319 lci = ie[2]; /* Measurement Token */ in hostapd_handle_nei_report_req()
[all …]
HDneighbor_db.h19 const struct wpabuf *nr, const struct wpabuf *lci,
HDhostapd.h154 struct wpabuf *lci; member
HDap_config.h1154 struct wpabuf *lci; member
HDbeacon.c2508 params->lci = hapd->iface->conf->lci; in ieee802_11_build_ap_params()
HDap_config.c1039 wpabuf_free(conf->lci); in hostapd_config_free()
/freebsd-14-stable/contrib/wpa/wpa_supplicant/
HDrrm.c142 int lci, int civic, in wpas_rrm_send_neighbor_rep_request() argument
178 (lci ? 2 + MEASURE_REQUEST_LCI_LEN : 0) + in wpas_rrm_send_neighbor_rep_request()
200 if (lci) { in wpas_rrm_send_neighbor_rep_request()
323 if (!wpa_s->lci) in wpas_rrm_build_lci_report()
356 wpabuf_head_u8(wpa_s->lci), in wpas_rrm_build_lci_report()
357 wpabuf_len(wpa_s->lci)) < 0) { in wpas_rrm_build_lci_report()
HDctrl_iface.c343 struct wpabuf *lci; in wpas_ctrl_iface_set_lci() local
346 wpabuf_free(wpa_s->lci); in wpas_ctrl_iface_set_lci()
347 wpa_s->lci = NULL; in wpas_ctrl_iface_set_lci()
351 lci = wpabuf_parse_bin(cmd); in wpas_ctrl_iface_set_lci()
352 if (!lci) in wpas_ctrl_iface_set_lci()
356 wpabuf_free(lci); in wpas_ctrl_iface_set_lci()
360 wpabuf_free(wpa_s->lci); in wpas_ctrl_iface_set_lci()
361 wpa_s->lci = lci; in wpas_ctrl_iface_set_lci()
10623 char lci[256 * 2 + 1]; in wpas_ctrl_neighbor_rep_cb() local
10648 lci[0] = '\0'; in wpas_ctrl_neighbor_rep_cb()
[all …]
HDwpa_supplicant_i.h1419 struct wpabuf *lci; member
1762 int lci, int civic,
HDsme.c376 if (wpa_s->lci) in sme_auth_handle_rrm()
HDwpa_supplicant.c722 wpabuf_free(wpa_s->lci); in wpa_supplicant_cleanup()
723 wpa_s->lci = NULL; in wpa_supplicant_cleanup()
/freebsd-14-stable/sys/contrib/dev/iwlwifi/mvm/
HDftm-responder.c209 memcpy(pos + 2, params->lci, params->lci_len); in iwl_mvm_ftm_responder_dyn_cfg_v2()
251 memcpy(cmd.lci_buf + 2, params->lci, params->lci_len); in iwl_mvm_ftm_responder_dyn_cfg_v3()
HDftm-initiator.c1165 res->ftm.lci = entry->buf; in iwl_mvm_ftm_get_lci_civic()
1508 const u8 *ies, *lci, *civic, *msr_ie; in iwl_mvm_ftm_lc_notif() local
1526 lci = msr_ie + 2; in iwl_mvm_ftm_lc_notif()
1545 memcpy(entry->buf, lci, lci_len); in iwl_mvm_ftm_lc_notif()
/freebsd-14-stable/contrib/wpa/hostapd/
HDconfig_file.c4671 wpabuf_free(conf->lci); in hostapd_config_fill()
4672 conf->lci = wpabuf_parse_bin(pos); in hostapd_config_fill()
4673 if (conf->lci && wpabuf_len(conf->lci) == 0) { in hostapd_config_fill()
4674 wpabuf_free(conf->lci); in hostapd_config_fill()
4675 conf->lci = NULL; in hostapd_config_fill()
HDctrl_iface.c3356 struct wpabuf *nr, *lci = NULL, *civic = NULL; in hostapd_ctrl_iface_set_neighbor() local
3410 lci = wpabuf_parse_bin(tmp + 4); in hostapd_ctrl_iface_set_neighbor()
3411 if (!lci) { in hostapd_ctrl_iface_set_neighbor()
3451 ret = hostapd_neighbor_set(hapd, bssid, &ssid, nr, lci, civic, in hostapd_ctrl_iface_set_neighbor()
3456 wpabuf_free(lci); in hostapd_ctrl_iface_set_neighbor()
/freebsd-14-stable/sys/compat/linuxkpi/common/include/net/
HDcfg80211.h342 uint8_t *lci; member
HDmac80211.h410 uint8_t *lci; member
/freebsd-14-stable/contrib/wpa/src/drivers/
HDdriver.h1660 const struct wpabuf *lci; member
HDdriver_nl80211.c5317 (params->lci && in wpa_driver_nl80211_set_ap()
5319 wpabuf_len(params->lci), in wpa_driver_nl80211_set_ap()
5320 wpabuf_head(params->lci))) || in wpa_driver_nl80211_set_ap()