2012-02-26 10:25:55 -05:00
|
|
|
/*
|
|
|
|
* IEEE 802.11v WNM related functions and structures
|
2013-08-01 17:37:48 -04:00
|
|
|
* Copyright (c) 2011-2013, Qualcomm Atheros, Inc.
|
2012-02-26 10:25:55 -05:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2013-08-01 17:37:48 -04:00
|
|
|
struct sta_info;
|
2012-02-26 10:25:55 -05:00
|
|
|
|
2012-12-16 12:16:17 -05:00
|
|
|
int ieee802_11_rx_wnm_action_ap(struct hostapd_data *hapd,
|
2013-12-29 04:22:23 -05:00
|
|
|
const struct ieee80211_mgmt *mgmt, size_t len);
|
2013-12-27 12:40:04 -05:00
|
|
|
int wnm_send_disassoc_imminent(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta, int disassoc_timer);
|
2013-08-01 17:37:48 -04:00
|
|
|
int wnm_send_ess_disassoc_imminent(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta, const char *url,
|
|
|
|
int disassoc_timer);
|
2012-02-26 10:25:55 -05:00
|
|
|
|
|
|
|
#endif /* WNM_AP_H */
|