40c42e725cdad69a85c9f2684d7712870670a699
[mech_eap.git] / src / ap / neighbor_db.h
1 /*
2  * hostapd / Neighboring APs DB
3  * Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH.
4  * Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved.
5  *
6  * This software may be distributed under the terms of the BSD license.
7  * See README for more details.
8  */
9
10 #ifndef NEIGHBOR_DB_H
11 #define NEIGHBOR_DB_H
12
13 int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
14                          const struct wpa_ssid_value *ssid,
15                          const struct wpabuf *nr, const struct wpabuf *lci,
16                          const struct wpabuf *civic);
17 int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
18                             const struct wpa_ssid_value *ssid);
19 void hostpad_free_neighbor_db(struct hostapd_data *hapd);
20
21 #endif /* NEIGHBOR_DB_H */