1214501Srpaulo/*
2214501Srpaulo * hostapd / WMM (Wi-Fi Multimedia)
3214501Srpaulo * Copyright 2002-2003, Instant802 Networks, Inc.
4214501Srpaulo * Copyright 2005-2006, Devicescape Software, Inc.
5214501Srpaulo *
6214501Srpaulo * This program is free software; you can redistribute it and/or modify
7214501Srpaulo * it under the terms of the GNU General Public License version 2 as
8214501Srpaulo * published by the Free Software Foundation.
9214501Srpaulo *
10214501Srpaulo * Alternatively, this software may be distributed under the terms of BSD
11214501Srpaulo * license.
12214501Srpaulo *
13214501Srpaulo * See README and COPYING for more details.
14214501Srpaulo */
15214501Srpaulo
16214501Srpaulo#ifndef WME_H
17214501Srpaulo#define WME_H
18214501Srpaulo
19214501Srpaulostruct ieee80211_mgmt;
20214501Srpaulostruct wmm_tspec_element;
21214501Srpaulo
22214501Srpaulou8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
23214501Srpauloint hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid,
24214501Srpaulo			  size_t len);
25214501Srpaulovoid hostapd_wmm_action(struct hostapd_data *hapd,
26214501Srpaulo			const struct ieee80211_mgmt *mgmt, size_t len);
27214501Srpauloint wmm_process_tspec(struct wmm_tspec_element *tspec);
28214501Srpaulo
29214501Srpaulo#endif /* WME_H */
30