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