2 * hostapd / WMM (Wi-Fi Multimedia)
3 * Copyright 2002-2003, Instant802 Networks, Inc.
4 * Copyright 2005-2006, Devicescape Software, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Alternatively, this software may be distributed under the terms of BSD
13 * See README and COPYING for more details.
21 #endif /* __linux__ */
23 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
24 #include <sys/types.h>
25 #include <sys/endian.h>
26 #endif /* defined(__FreeBSD__) || defined(__NetBSD__) ||
27 * defined(__DragonFly__) */
29 #define WME_OUI_TYPE 2
30 #define WME_OUI_SUBTYPE_INFORMATION_ELEMENT 0
31 #define WME_OUI_SUBTYPE_PARAMETER_ELEMENT 1
32 #define WME_OUI_SUBTYPE_TSPEC_ELEMENT 2
35 #define WME_ACTION_CATEGORY 17
36 #define WME_ACTION_CODE_SETUP_REQUEST 0
37 #define WME_ACTION_CODE_SETUP_RESPONSE 1
38 #define WME_ACTION_CODE_TEARDOWN 2
40 #define WME_SETUP_RESPONSE_STATUS_ADMISSION_ACCEPTED 0
41 #define WME_SETUP_RESPONSE_STATUS_INVALID_PARAMETERS 1
42 #define WME_SETUP_RESPONSE_STATUS_REFUSED 3
44 #define WME_TSPEC_DIRECTION_UPLINK 0
45 #define WME_TSPEC_DIRECTION_DOWNLINK 1
46 #define WME_TSPEC_DIRECTION_BI_DIRECTIONAL 3
48 extern inline u16
tsinfo(int tag1d
, int contention_based
, int direction
)
50 return (tag1d
<< 11) | (contention_based
<< 7) | (direction
<< 5) |
55 struct wme_information_element
{
56 /* required fields for WME version 1 */
63 } __attribute__ ((packed
));
65 struct wme_ac_parameter
{
66 #if __BYTE_ORDER == __LITTLE_ENDIAN
76 #elif __BYTE_ORDER == __BIG_ENDIAN
87 #error "Please fix <endian.h>"
92 } __attribute__ ((packed
));
94 struct wme_parameter_element
{
95 /* required fields for WME version 1 */
102 struct wme_ac_parameter ac
[4];
104 } __attribute__ ((packed
));
106 struct wme_tspec_info_element
{
114 u16 nominal_msdu_size
;
115 u16 maximum_msdu_size
;
116 u32 minimum_service_interval
;
117 u32 maximum_service_interval
;
118 u32 inactivity_interval
;
120 u32 minimum_data_rate
;
122 u32 maximum_burst_size
;
123 u32 minimum_phy_rate
;
126 u16 surplus_bandwidth_allowance
;
128 } __attribute__ ((packed
));
131 /* Access Categories */
140 u8
* hostapd_eid_wme(struct hostapd_data
*hapd
, u8
*eid
);
141 int hostapd_eid_wme_valid(struct hostapd_data
*hapd
, u8
*eid
, size_t len
);
142 int hostapd_wme_sta_config(struct hostapd_data
*hapd
, struct sta_info
*sta
);
143 void hostapd_wme_action(struct hostapd_data
*hapd
, struct ieee80211_mgmt
*mgmt
,