1 /* 2 * IEEE 802.11v WNM related functions and structures 3 * Copyright (c) 2011-2012, Qualcomm Atheros, Inc. 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_STA_H 10 #define WNM_STA_H 11 12 struct rx_action; 13 struct wpa_supplicant; 14 15 int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s, 16 u8 action, u16 intval, struct wpabuf *tfs_req); 17 18 void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s, 19 struct rx_action *action); 20 21 #endif /* WNM_STA_H */ 22