taxonomy.h 766 B

123456789101112131415161718192021222324
  1. /*
  2. * hostapd / Station client taxonomy
  3. * Copyright (c) 2015 Google, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef TAXONOMY_H
  9. #define TAXONOMY_H
  10. void taxonomy_sta_info_probe_req(const struct hostapd_data *hapd,
  11. struct sta_info *sta,
  12. const u8 *ie, size_t ie_len);
  13. void taxonomy_hostapd_sta_info_probe_req(const struct hostapd_data *hapd,
  14. struct hostapd_sta_info *sta,
  15. const u8 *ie, size_t ie_len);
  16. void taxonomy_sta_info_assoc_req(const struct hostapd_data *hapd,
  17. struct sta_info *sta,
  18. const u8 *ie, size_t ie_len);
  19. int retrieve_sta_taxonomy(const struct hostapd_data *hapd,
  20. struct sta_info *sta, char *buf, size_t buflen);
  21. #endif /* TAXONOMY_H */