|
@@ -837,51 +837,6 @@ void hostapd_interface_deinit(struct hostapd_iface *iface)
|
|
|
}
|
|
|
|
|
|
|
|
|
-struct prune_data {
|
|
|
- struct hostapd_data *hapd;
|
|
|
- const u8 *addr;
|
|
|
-};
|
|
|
-
|
|
|
-static int prune_associations(struct hostapd_iface *iface, void *ctx)
|
|
|
-{
|
|
|
- struct prune_data *data = ctx;
|
|
|
- struct sta_info *osta;
|
|
|
- struct hostapd_data *ohapd;
|
|
|
- size_t j;
|
|
|
-
|
|
|
- for (j = 0; j < iface->num_bss; j++) {
|
|
|
- ohapd = iface->bss[j];
|
|
|
- if (ohapd == data->hapd)
|
|
|
- continue;
|
|
|
- osta = ap_get_sta(ohapd, data->addr);
|
|
|
- if (!osta)
|
|
|
- continue;
|
|
|
-
|
|
|
- ap_sta_disassociate(ohapd, osta, WLAN_REASON_UNSPECIFIED);
|
|
|
- }
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * hostapd_prune_associations - Remove extraneous associations
|
|
|
- * @hapd: Pointer to BSS data for the most recent association
|
|
|
- * @sta: Pointer to the associated STA data
|
|
|
- *
|
|
|
- * This function looks through all radios and BSS's for previous
|
|
|
- * (stale) associations of STA. If any are found they are removed.
|
|
|
- */
|
|
|
-static void hostapd_prune_associations(struct hostapd_data *hapd,
|
|
|
- struct sta_info *sta)
|
|
|
-{
|
|
|
- struct prune_data data;
|
|
|
- data.hapd = hapd;
|
|
|
- data.addr = sta->addr;
|
|
|
- hostapd_for_each_interface(hapd->iface->interfaces,
|
|
|
- prune_associations, &data);
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* hostapd_new_assoc_sta - Notify that a new station associated with the AP
|
|
|
* @hapd: Pointer to BSS data
|
|
@@ -902,7 +857,7 @@ void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- hostapd_prune_associations(hapd, sta);
|
|
|
+ hostapd_prune_associations(hapd, sta->addr);
|
|
|
|
|
|
/* IEEE 802.11F (IAPP) */
|
|
|
if (hapd->conf->ieee802_11f)
|