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