mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-26 09:18:24 -05:00
dbfb8e82ff
This driver event was used separately for some Action frames, but all the driver wrappers converted to this from information that would have been enough to indicate an EVENT_RX_MGMT event. In addition, the received event was then converted back to a full IEEE 802.11 management frame for processing in most cases. This is unnecessary complexity, so get rid of the extra path and use EVENT_RX_MGMT for Action frames as well as other management frame subtypes. Signed-hostap: Jouni Malinen <j@w1.fi>
23 lines
653 B
C
23 lines
653 B
C
/*
|
|
* IEEE 802.11v WNM related functions and structures
|
|
* Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef WNM_AP_H
|
|
#define WNM_AP_H
|
|
|
|
struct sta_info;
|
|
|
|
int ieee802_11_rx_wnm_action_ap(struct hostapd_data *hapd,
|
|
const struct ieee80211_mgmt *mgmt, size_t len);
|
|
int wnm_send_disassoc_imminent(struct hostapd_data *hapd,
|
|
struct sta_info *sta, int disassoc_timer);
|
|
int wnm_send_ess_disassoc_imminent(struct hostapd_data *hapd,
|
|
struct sta_info *sta, const char *url,
|
|
int disassoc_timer);
|
|
|
|
#endif /* WNM_AP_H */
|