1324714Scy/*
2324714Scy * hostapd / Neighboring APs DB
3324714Scy * Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH.
4324714Scy * Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved.
5324714Scy *
6324714Scy * This software may be distributed under the terms of the BSD license.
7324714Scy * See README for more details.
8324714Scy */
9324714Scy
10324714Scy#ifndef NEIGHBOR_DB_H
11324714Scy#define NEIGHBOR_DB_H
12324714Scy
13324714Scystruct hostapd_neighbor_entry *
14324714Scyhostapd_neighbor_get(struct hostapd_data *hapd, const u8 *bssid,
15324714Scy		     const struct wpa_ssid_value *ssid);
16324714Scyint hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
17324714Scy			 const struct wpa_ssid_value *ssid,
18324714Scy			 const struct wpabuf *nr, const struct wpabuf *lci,
19346981Scy			 const struct wpabuf *civic, int stationary);
20346981Scyvoid hostapd_neighbor_set_own_report(struct hostapd_data *hapd);
21324714Scyint hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
22324714Scy			    const struct wpa_ssid_value *ssid);
23346981Scyvoid hostapd_free_neighbor_db(struct hostapd_data *hapd);
24324714Scy
25324714Scy#endif /* NEIGHBOR_DB_H */
26