Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * IEEE 802.11v WNM related functions and structures |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame^] | 3 | * Copyright (c) 2011-2013, Qualcomm Atheros, Inc. |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 4 | * |
| 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
| 7 | */ |
| 8 | |
| 9 | #ifndef WNM_AP_H |
| 10 | #define WNM_AP_H |
| 11 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame^] | 12 | struct sta_info; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 13 | |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 14 | int ieee802_11_rx_wnm_action_ap(struct hostapd_data *hapd, |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame^] | 15 | const struct ieee80211_mgmt *mgmt, size_t len); |
| 16 | int wnm_send_disassoc_imminent(struct hostapd_data *hapd, |
| 17 | struct sta_info *sta, int disassoc_timer); |
| 18 | int wnm_send_ess_disassoc_imminent(struct hostapd_data *hapd, |
| 19 | struct sta_info *sta, const char *url, |
| 20 | int disassoc_timer); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 21 | |
| 22 | #endif /* WNM_AP_H */ |