2012-02-26 17:25:55 +02:00
|
|
|
/*
|
|
|
|
* IEEE 802.11v WNM related functions and structures
|
2014-11-22 11:31:03 +02:00
|
|
|
* Copyright (c) 2011-2014, Qualcomm Atheros, Inc.
|
2012-02-26 17:25:55 +02: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-02 00:37:48 +03:00
|
|
|
struct sta_info;
|
2012-02-26 17:25:55 +02:00
|
|
|
|
2012-12-16 19:16:17 +02:00
|
|
|
int ieee802_11_rx_wnm_action_ap(struct hostapd_data *hapd,
|
2013-12-29 11:22:23 +02:00
|
|
|
const struct ieee80211_mgmt *mgmt, size_t len);
|
2013-12-27 19:40:04 +02:00
|
|
|
int wnm_send_disassoc_imminent(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta, int disassoc_timer);
|
2013-08-02 00:37:48 +03:00
|
|
|
int wnm_send_ess_disassoc_imminent(struct hostapd_data *hapd,
|
|
|
|
struct sta_info *sta, const char *url,
|
|
|
|
int disassoc_timer);
|
2014-11-22 11:31:03 +02:00
|
|
|
int wnm_send_bss_tm_req(struct hostapd_data *hapd, struct sta_info *sta,
|
|
|
|
u8 req_mode, int disassoc_timer, u8 valid_int,
|
|
|
|
const u8 *bss_term_dur, const char *url,
|
2016-02-15 16:53:49 +02:00
|
|
|
const u8 *nei_rep, size_t nei_rep_len,
|
|
|
|
const u8 *mbo_attrs, size_t mbo_len);
|
2018-03-13 08:50:28 +05:30
|
|
|
void ap_sta_reset_steer_flag_timer(void *eloop_ctx, void *timeout_ctx);
|
2012-02-26 17:25:55 +02:00
|
|
|
|
|
|
|
#endif /* WNM_AP_H */
|