|
@@ -872,6 +872,19 @@ void hs20_rx_deauth_imminent_notice(struct wpa_supplicant *wpa_s, u8 code,
|
|
|
if (code == HS20_DEAUTH_REASON_CODE_BSS) {
|
|
|
wpa_printf(MSG_DEBUG, "HS 2.0: Add BSS to blacklist");
|
|
|
wpa_blacklist_add(wpa_s, wpa_s->bssid);
|
|
|
+ /* TODO: For now, disable full ESS since some drivers may not
|
|
|
+ * support disabling per BSS. */
|
|
|
+ if (wpa_s->current_ssid) {
|
|
|
+ struct os_time now;
|
|
|
+ os_get_time(&now);
|
|
|
+ if (now.sec + reauth_delay <=
|
|
|
+ wpa_s->current_ssid->disabled_until.sec)
|
|
|
+ return;
|
|
|
+ wpa_printf(MSG_DEBUG, "HS 2.0: Disable network for %u seconds (BSS)",
|
|
|
+ reauth_delay);
|
|
|
+ wpa_s->current_ssid->disabled_until.sec =
|
|
|
+ now.sec + reauth_delay;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if (code == HS20_DEAUTH_REASON_CODE_ESS && wpa_s->current_ssid) {
|