diff options
Diffstat (limited to 'src/ap/taxonomy.c')
-rw-r--r-- | src/ap/taxonomy.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ap/taxonomy.c b/src/ap/taxonomy.c index e533a10..cea8b72 100644 --- a/src/ap/taxonomy.c +++ b/src/ap/taxonomy.c @@ -273,6 +273,15 @@ void taxonomy_sta_info_probe_req(const struct hostapd_data *hapd, } +void taxonomy_hostapd_sta_info_probe_req(const struct hostapd_data *hapd, + struct hostapd_sta_info *info, + const u8 *ie, size_t ie_len) +{ + wpabuf_free(info->probe_ie_taxonomy); + info->probe_ie_taxonomy = wpabuf_alloc_copy(ie, ie_len); +} + + void taxonomy_sta_info_assoc_req(const struct hostapd_data *hapd, struct sta_info *sta, const u8 *ie, size_t ie_len) |