Interworking: Add support for QoS Mapping functionality for the AP
This allows QoS Map Set element to be added to (Re)Association Response frames and in QoS Map Configure frame. The QoS Mapping parameters are also made available for the driver interface. Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
ac1bc54948
commit
c551700f1f
15 changed files with 302 additions and 0 deletions
|
@ -242,6 +242,7 @@
|
|||
#define WLAN_EID_LINK_ID 101
|
||||
#define WLAN_EID_INTERWORKING 107
|
||||
#define WLAN_EID_ADV_PROTO 108
|
||||
#define WLAN_EID_QOS_MAP_SET 110
|
||||
#define WLAN_EID_ROAMING_CONSORTIUM 111
|
||||
#define WLAN_EID_EXT_CAPAB 127
|
||||
#define WLAN_EID_CCKM 156
|
||||
|
@ -1079,6 +1080,15 @@ enum bss_trans_mgmt_status_code {
|
|||
#define WNM_NEIGHBOR_RRM_ENABLED_CAPABILITIES 70
|
||||
#define WNM_NEIGHBOR_MULTIPLE_BSSID 71
|
||||
|
||||
/* QoS action */
|
||||
enum qos_action {
|
||||
QOS_ADDTS_REQ = 0,
|
||||
QOS_ADDTS_RESP = 1,
|
||||
QOS_DELTS = 2,
|
||||
QOS_SCHEDULE = 3,
|
||||
QOS_QOS_MAP_CONFIG = 4,
|
||||
};
|
||||
|
||||
/* IEEE Std 802.11-2012, 8.4.2.62 20/40 BSS Coexistence element */
|
||||
#define WLAN_20_40_BSS_COEX_INFO_REQ BIT(0)
|
||||
#define WLAN_20_40_BSS_COEX_40MHZ_INTOL BIT(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue