neighbor_db.h 875 B

123456789101112131415161718192021222324
  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. #ifndef NEIGHBOR_DB_H
  10. #define NEIGHBOR_DB_H
  11. struct hostapd_neighbor_entry *
  12. hostapd_neighbor_get(struct hostapd_data *hapd, const u8 *bssid,
  13. const struct wpa_ssid_value *ssid);
  14. int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid,
  15. const struct wpa_ssid_value *ssid,
  16. const struct wpabuf *nr, const struct wpabuf *lci,
  17. const struct wpabuf *civic, int stationary);
  18. int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid,
  19. const struct wpa_ssid_value *ssid);
  20. void hostpad_free_neighbor_db(struct hostapd_data *hapd);
  21. #endif /* NEIGHBOR_DB_H */