mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-31 09:14:03 -05:00
Allow AP to disconnect STA without sending Deauth/Disassoc frame
The optional tx=0 parameter can be added to the hostapd DEAUTHENTICATE/DISASSOCIATE command to request disconnection without transmitting the Deauthentication/Disassociation frame to the STA. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
6545398aaa
commit
3dbfb28cfe
@ -352,7 +352,10 @@ int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
|
|||||||
}
|
}
|
||||||
#endif /* CONFIG_P2P_MANAGER */
|
#endif /* CONFIG_P2P_MANAGER */
|
||||||
|
|
||||||
hostapd_drv_sta_deauth(hapd, addr, reason);
|
if (os_strstr(txtaddr, " tx=0"))
|
||||||
|
hostapd_drv_sta_remove(hapd, addr);
|
||||||
|
else
|
||||||
|
hostapd_drv_sta_deauth(hapd, addr, reason);
|
||||||
sta = ap_get_sta(hapd, addr);
|
sta = ap_get_sta(hapd, addr);
|
||||||
if (sta)
|
if (sta)
|
||||||
ap_sta_deauthenticate(hapd, sta, reason);
|
ap_sta_deauthenticate(hapd, sta, reason);
|
||||||
@ -412,7 +415,10 @@ int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
|
|||||||
}
|
}
|
||||||
#endif /* CONFIG_P2P_MANAGER */
|
#endif /* CONFIG_P2P_MANAGER */
|
||||||
|
|
||||||
hostapd_drv_sta_disassoc(hapd, addr, reason);
|
if (os_strstr(txtaddr, " tx=0"))
|
||||||
|
hostapd_drv_sta_remove(hapd, addr);
|
||||||
|
else
|
||||||
|
hostapd_drv_sta_disassoc(hapd, addr, reason);
|
||||||
sta = ap_get_sta(hapd, addr);
|
sta = ap_get_sta(hapd, addr);
|
||||||
if (sta)
|
if (sta)
|
||||||
ap_sta_disassociate(hapd, sta, reason);
|
ap_sta_disassociate(hapd, sta, reason);
|
||||||
|
Loading…
Reference in New Issue
Block a user