wmm.h 653 B

1234567891011121314151617181920212223
  1. /*
  2. * hostapd / WMM (Wi-Fi Multimedia)
  3. * Copyright 2002-2003, Instant802 Networks, Inc.
  4. * Copyright 2005-2006, Devicescape Software, Inc.
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #ifndef WME_H
  10. #define WME_H
  11. struct ieee80211_mgmt;
  12. struct wmm_tspec_element;
  13. u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
  14. int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid,
  15. size_t len);
  16. void hostapd_wmm_action(struct hostapd_data *hapd,
  17. const struct ieee80211_mgmt *mgmt, size_t len);
  18. int wmm_process_tspec(struct wmm_tspec_element *tspec);
  19. #endif /* WME_H */