ee48f48ba1
This lets one know the current neighbor list, and could be used to populate the neighbor list of other hostapd processes. For instance: $ hostapd_cli -i vap0001 show_neighbor 04:f0:21:1e:ae:b0 ssid=04f0211eaeb0af190000802809 nr=04f0211eaeb0af1900008028090603022a00 $ hostapd_cli -i vap0000 set_neighbor 04:f0:21:1e:ae:b0 ssid=04f0211eaeb0af190000802809 nr=04f0211eaeb0af1900008028090603022a00 OK $ hostapd_cli -i vap0000 show_neighbor 04:f0:21:1e:ae:b0 ssid=04f0211eaeb0af190000802809 nr=04f0211eaeb0af1900008028090603022a00 04:f0:21:c3:b2:b0 ssid=04f021c3b2b0af190000802809 nr=04f021c3b2b0af1900008028090603022a00 Signed-off-by: Ben Greear <greearb@candelatech.com>
26 lines
1,020 B
C
26 lines
1,020 B
C
/*
|
|
* hostapd / Neighboring APs DB
|
|
* Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH.
|
|
* Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved.
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef NEIGHBOR_DB_H
|
|
#define NEIGHBOR_DB_H
|
|
|
|
struct hostapd_neighbor_entry *
|
|
hostapd_neighbor_get(struct hostapd_data *hapd, const u8 *bssid,
|
|
const struct wpa_ssid_value *ssid);
|
|
int hostapd_neighbor_show(struct hostapd_data *hapd, char *buf, size_t buflen);
|
|
int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
|
|
const struct wpa_ssid_value *ssid,
|
|
const struct wpabuf *nr, const struct wpabuf *lci,
|
|
const struct wpabuf *civic, int stationary);
|
|
void hostapd_neighbor_set_own_report(struct hostapd_data *hapd);
|
|
int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
|
|
const struct wpa_ssid_value *ssid);
|
|
void hostapd_free_neighbor_db(struct hostapd_data *hapd);
|
|
|
|
#endif /* NEIGHBOR_DB_H */
|