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 10 #ifndef WME_H 11 #define WME_H 12 13 struct ieee80211_mgmt; 14 struct wmm_tspec_element; 15 16 u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid); 17 int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, 18 size_t len); 19 void hostapd_wmm_action(struct hostapd_data *hapd, 20 const struct ieee80211_mgmt *mgmt, size_t len); 21 int wmm_process_tspec(struct wmm_tspec_element *tspec); 22 23 #endif /* WME_H */ 24