00001 /* 00002 * hostapd / WMM (Wi-Fi Multimedia) 00003 * Copyright 2002-2003, Instant802 Networks, Inc. 00004 * Copyright 2005-2006, Devicescape Software, Inc. 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License version 2 as 00008 * published by the Free Software Foundation. 00009 * 00010 * Alternatively, this software may be distributed under the terms of BSD 00011 * license. 00012 * 00013 * See README and COPYING for more details. 00014 */ 00015 00016 #ifndef WME_H 00017 #define WME_H 00018 00019 struct ieee80211_mgmt; 00020 struct wmm_tspec_element; 00021 00022 u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid); 00023 int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, 00024 size_t len); 00025 void hostapd_wmm_action(struct hostapd_data *hapd, 00026 const struct ieee80211_mgmt *mgmt, size_t len); 00027 int wmm_process_tspec(struct wmm_tspec_element *tspec); 00028 00029 #endif /* WME_H */