wnm_sta.h 535 B

123456789101112131415161718192021
  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. #ifndef WNM_STA_H
  9. #define WNM_STA_H
  10. struct rx_action;
  11. struct wpa_supplicant;
  12. int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
  13. u8 action, u16 intval, struct wpabuf *tfs_req);
  14. void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
  15. struct rx_action *action);
  16. #endif /* WNM_STA_H */