Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829
  1. /*
  2. * hostapd / WMM (Wi-Fi Multimedia)
  3. * Copyright 2002-2003, Instant802 Networks, Inc.
  4. * Copyright 2005-2006, Devicescape Software, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #ifndef WME_H
  16. #define WME_H
  17. struct ieee80211_mgmt;
  18. struct wmm_tspec_element;
  19. u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
  20. int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid,
  21. size_t len);
  22. void hostapd_wmm_action(struct hostapd_data *hapd,
  23. const struct ieee80211_mgmt *mgmt, size_t len);
  24. int wmm_process_tspec(struct wmm_tspec_element *tspec);
  25. #endif /* WME_H */