wme.h
Go to the documentation of this file.00001
00017 #ifndef WME_H
00018 #define WME_H
00019
00020 struct ieee80211_mgmt;
00021
00022 u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
00023 int hostapd_eid_wmm_valid(struct hostapd_data *hapd, u8 *eid, size_t len);
00024 #ifdef NEED_AP_MLME
00025 int hostapd_wmm_sta_config(struct hostapd_data *hapd, struct sta_info *sta);
00026 #else
00027 static inline int hostapd_wmm_sta_config(struct hostapd_data *hapd,
00028 struct sta_info *sta)
00029 {
00030 return 0;
00031 }
00032 #endif
00033 void hostapd_wmm_action(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
00034 size_t len);
00035 int wmm_process_tspec(struct wmm_tspec_element *tspec);
00036
00037 #endif
00038