|
@@ -17,7 +17,6 @@
|
|
|
#include "common.h"
|
|
|
#include "hostapd.h"
|
|
|
#include "eloop.h"
|
|
|
-#include "driver_i.h"
|
|
|
#include "sta_info.h"
|
|
|
#include "mlme.h"
|
|
|
#include "wpa.h"
|
|
@@ -30,7 +29,7 @@ static void ieee80211_tkip_countermeasures_stop(void *eloop_ctx,
|
|
|
{
|
|
|
struct hostapd_data *hapd = eloop_ctx;
|
|
|
hapd->tkip_countermeasures = 0;
|
|
|
- hostapd_set_countermeasures(hapd, 0);
|
|
|
+ hapd->drv.set_countermeasures(hapd, 0);
|
|
|
hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
|
|
|
HOSTAPD_LEVEL_INFO, "TKIP countermeasures ended");
|
|
|
}
|
|
@@ -45,7 +44,7 @@ static void ieee80211_tkip_countermeasures_start(struct hostapd_data *hapd)
|
|
|
|
|
|
wpa_auth_countermeasures_start(hapd->wpa_auth);
|
|
|
hapd->tkip_countermeasures = 1;
|
|
|
- hostapd_set_countermeasures(hapd, 1);
|
|
|
+ hapd->drv.set_countermeasures(hapd, 1);
|
|
|
wpa_gtk_rekey(hapd->wpa_auth);
|
|
|
eloop_cancel_timeout(ieee80211_tkip_countermeasures_stop, hapd, NULL);
|
|
|
eloop_register_timeout(60, 0, ieee80211_tkip_countermeasures_stop,
|