Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * hostapd / WMM (Wi-Fi Multimedia) |
| 3 | * Copyright 2002-2003, Instant802 Networks, Inc. |
| 4 | * Copyright 2005-2006, Devicescape Software, Inc. |
| 5 | * |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 6 | * This software may be distributed under the terms of the BSD license. |
| 7 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 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 */ |