Home
last modified time | relevance | path

Searched refs:civic (Results 1 – 15 of 15) sorted by relevance

/hostap-latest/src/ap/
Dneighbor_db.c51 char civic[2 * 255 + 1]; in hostapd_neighbor_show() local
70 civic[0] = '\0'; in hostapd_neighbor_show()
71 if (nr->civic) in hostapd_neighbor_show()
72 wpa_snprintf_hex(civic, sizeof(civic), in hostapd_neighbor_show()
73 wpabuf_head(nr->civic), in hostapd_neighbor_show()
74 wpabuf_len(nr->civic)); in hostapd_neighbor_show()
81 nr->civic ? " civic=" : "", civic, in hostapd_neighbor_show()
98 wpabuf_free(nr->civic); in hostapd_neighbor_clear_entry()
99 nr->civic = NULL; in hostapd_neighbor_clear_entry()
127 const struct wpabuf *civic, int stationary, in hostapd_neighbor_set() argument
[all …]
Drrm.c192 if (send_civic && nr->civic) in hostapd_neighbor_report_len()
193 len += 2 + wpabuf_len(nr->civic); in hostapd_neighbor_report_len()
202 u8 civic, u16 lci_max_age) in hostapd_send_nei_report_resp() argument
231 len = hostapd_neighbor_report_len(buf, nr, send_lci, civic); in hostapd_send_nei_report_resp()
259 if (civic && nr->civic) { in hostapd_send_nei_report_resp()
261 wpabuf_put_u8(buf, wpabuf_len(nr->civic)); in hostapd_send_nei_report_resp()
267 wpabuf_put_buf(buf, nr->civic); in hostapd_send_nei_report_resp()
268 *msmt_token = civic; in hostapd_send_nei_report_resp()
287 u8 lci = 0, civic = 0; /* Measurement tokens */ in hostapd_handle_nei_report_req() local
324 civic = ie[2]; /* Measurement token */ in hostapd_handle_nei_report_req()
[all …]
Dneighbor_db.h20 const struct wpabuf *civic, int stationary,
Dhostapd.h155 struct wpabuf *civic; member
Dap_config.h1176 struct wpabuf *civic; member
Dbeacon.c2605 params->civic = hapd->iface->conf->civic; in ieee802_11_build_ap_params()
Dap_config.c1052 wpabuf_free(conf->civic); in hostapd_config_free()
/hostap-latest/tests/hwsim/
Dtest_rrm.py34 civic = "01000b0011223344556677889900998877665544332211aabbccddeeff" variable
36 def check_nr_results(dev, bssids=None, lci=False, civic=False): argument
56 if civic and "civic=" not in r:
122 …uest("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " lci=" + lci + " civic=" + civic):
134 …uest("SET_NEIGHBOR 00:11:22:33:44:56 ssid=\"test1\" nr=" + nr + " lci=" + lci + " civic=" + civic):
156 … not in hapd.request("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " civic=" + civic):
160 …uest("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " lci=" + lci + " civic=" + civic):
181 …NEIGHBOR 00:11:22:33:44:55 ssid=\"test3\" nr=" + nr + " lci=" + lci + " civic=" + civic + " stat"):
219 … cmd = "SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test1\" nr=" + nr + " lci=" + lci + " civic=" + civic
280 …est("SET_NEIGHBOR 00:11:22:33:44:55 ssid=\"test3\" nr=" + nr1 + " lci=" + lci + " civic=" + civic):
[all …]
/hostap-latest/wpa_supplicant/
Drrm.c142 int lci, int civic, in wpas_rrm_send_neighbor_rep_request() argument
179 (civic ? 2 + MEASURE_REQUEST_CIVIC_LEN : 0)); in wpas_rrm_send_neighbor_rep_request()
234 if (civic) { in wpas_rrm_send_neighbor_rep_request()
Dctrl_iface.c10622 char civic[256 * 2 + 1]; in wpas_ctrl_neighbor_rep_cb() local
10647 civic[0] = '\0'; in wpas_ctrl_neighbor_rep_cb()
10668 if (civic[0]) in wpas_ctrl_neighbor_rep_cb()
10670 wpa_snprintf_hex(civic, sizeof(civic), in wpas_ctrl_neighbor_rep_cb()
10686 civic[0] ? " civic=" : "", civic); in wpas_ctrl_neighbor_rep_cb()
10707 int ret, lci = 0, civic = 0; in wpas_ctrl_iface_send_neighbor_rep() local
10734 civic = 1; in wpas_ctrl_iface_send_neighbor_rep()
10736 ret = wpas_rrm_send_neighbor_rep_request(wpa_s, ssid_p, lci, civic, in wpas_ctrl_iface_send_neighbor_rep()
Dwpa_supplicant_i.h1774 int lci, int civic,
/hostap-latest/hostapd/
Dconfig_file.c4753 wpabuf_free(conf->civic); in hostapd_config_fill()
4754 conf->civic = wpabuf_parse_bin(pos); in hostapd_config_fill()
4755 if (conf->civic && wpabuf_len(conf->civic) == 0) { in hostapd_config_fill()
4756 wpabuf_free(conf->civic); in hostapd_config_fill()
4757 conf->civic = NULL; in hostapd_config_fill()
Dctrl_iface.c3361 struct wpabuf *nr, *lci = NULL, *civic = NULL; in hostapd_ctrl_iface_set_neighbor() local
3431 civic = wpabuf_parse_bin(tmp + 6); in hostapd_ctrl_iface_set_neighbor()
3432 if (!civic) { in hostapd_ctrl_iface_set_neighbor()
3456 ret = hostapd_neighbor_set(hapd, bssid, &ssid, nr, lci, civic, in hostapd_ctrl_iface_set_neighbor()
3462 wpabuf_free(civic); in hostapd_ctrl_iface_set_neighbor()
/hostap-latest/src/drivers/
Ddriver.h1678 const struct wpabuf *civic; member
Ddriver_nl80211.c5321 (params->civic && in wpa_driver_nl80211_set_ap()
5323 wpabuf_len(params->civic), in wpa_driver_nl80211_set_ap()
5324 wpabuf_head(params->civic)))) in wpa_driver_nl80211_set_ap()