Fix capability mask

This commit is contained in:
vemax78 2014-01-19 21:25:22 +01:00
parent 254ef26ed6
commit 42293aad04
1 changed files with 15 additions and 15 deletions

View File

@ -6,21 +6,21 @@
#define CAPWAP_ADD_WLAN_GROUPTSC_LENGTH 6
#define CAPWAP_ADD_WLAN_SSID_LENGTH 32
#define CAPWAP_ADD_WLAN_CAPABILITY_ESS 0x8000
#define CAPWAP_ADD_WLAN_CAPABILITY_IBSS 0x4000
#define CAPWAP_ADD_WLAN_CAPABILITY_CFPOLLABLE 0x2000
#define CAPWAP_ADD_WLAN_CAPABILITY_CFPOLLREQUEST 0x1000
#define CAPWAP_ADD_WLAN_CAPABILITY_PRIVACY 0x0800
#define CAPWAP_ADD_WLAN_CAPABILITY_SHORTPREAMBLE 0x0400
#define CAPWAP_ADD_WLAN_CAPABILITY_PBCC 0x0200
#define CAPWAP_ADD_WLAN_CAPABILITY_CHANNELAGILITY 0x0100
#define CAPWAP_ADD_WLAN_CAPABILITY_SPECTRUMMAN 0x0080
#define CAPWAP_ADD_WLAN_CAPABILITY_QOS 0x0040
#define CAPWAP_ADD_WLAN_CAPABILITY_SHORTSLOTTIME 0x0020
#define CAPWAP_ADD_WLAN_CAPABILITY_APSD 0x0010
#define CAPWAP_ADD_WLAN_CAPABILITY_DSSS_OFDM 0x0004
#define CAPWAP_ADD_WLAN_CAPABILITY_DELAYEDACK 0x0002
#define CAPWAP_ADD_WLAN_CAPABILITY_IMMEDIATEACK 0x0001
#define CAPWAP_ADD_WLAN_CAPABILITY_ESS 0x0001
#define CAPWAP_ADD_WLAN_CAPABILITY_IBSS 0x0002
#define CAPWAP_ADD_WLAN_CAPABILITY_CFPOLLABLE 0x0004
#define CAPWAP_ADD_WLAN_CAPABILITY_CFPOLLREQUEST 0x0008
#define CAPWAP_ADD_WLAN_CAPABILITY_PRIVACY 0x0010
#define CAPWAP_ADD_WLAN_CAPABILITY_SHORTPREAMBLE 0x0020
#define CAPWAP_ADD_WLAN_CAPABILITY_PBCC 0x0040
#define CAPWAP_ADD_WLAN_CAPABILITY_CHANNELAGILITY 0x0080
#define CAPWAP_ADD_WLAN_CAPABILITY_SPECTRUMMAN 0x0100
#define CAPWAP_ADD_WLAN_CAPABILITY_QOS 0x0200
#define CAPWAP_ADD_WLAN_CAPABILITY_SHORTSLOTTIME 0x0400
#define CAPWAP_ADD_WLAN_CAPABILITY_APSD 0x0800
#define CAPWAP_ADD_WLAN_CAPABILITY_DSSS_OFDM 0x2000
#define CAPWAP_ADD_WLAN_CAPABILITY_DELAYEDACK 0x4000
#define CAPWAP_ADD_WLAN_CAPABILITY_IMMEDIATEACK 0x8000
#define CAPWAP_ADD_WLAN_KEY_STATUS_MULTICASTKEY 0
#define CAPWAP_ADD_WLAN_KEY_STATUS_WEP 1