2012-02-26 16:27:19 +01:00
|
|
|
/*
|
|
|
|
* IEEE 802.11v WNM related functions and structures
|
|
|
|
* Copyright (c) 2011-2012, Qualcomm Atheros, Inc.
|
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WNM_STA_H
|
|
|
|
#define WNM_STA_H
|
|
|
|
|
|
|
|
struct rx_action;
|
|
|
|
struct wpa_supplicant;
|
|
|
|
|
|
|
|
int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
|
2012-12-16 11:31:16 +01:00
|
|
|
u8 action, u16 intval, struct wpabuf *tfs_req);
|
2012-02-26 16:27:19 +01:00
|
|
|
|
|
|
|
void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
|
|
|
|
struct rx_action *action);
|
|
|
|
|
|
|
|
#endif /* WNM_STA_H */
|