Changed defs/function names from ..IEEE80211.. to ...80211...
Shorter names... FossilOrigin-Name: e494b45b4f03db8638cbcb2c437e2fe168dbdce0d11fd9f8a56db7767ac0aaf7
This commit is contained in:
85
src/capwap/capwap_80211.h
Normal file
85
src/capwap/capwap_80211.h
Normal file
@ -0,0 +1,85 @@
|
||||
|
||||
#define CWMSGELEM_80211_ADD_WLAN 1024
|
||||
#define CWMSGELEM_80211_ANTENNA 1025
|
||||
/*
|
||||
IEEE 802.11 Assigned WTP BSSID 1026
|
||||
IEEE 802.11 Delete WLAN 1027
|
||||
IEEE 802.11 Direct Sequence Control 1028
|
||||
IEEE 802.11 Information Element 1029
|
||||
IEEE 802.11 MAC Operation 1030
|
||||
IEEE 802.11 MIC Countermeasures 1031
|
||||
IEEE 802.11 Multi-Domain Capability 1032
|
||||
IEEE 802.11 OFDM Control 1033
|
||||
IEEE 802.11 Rate Set 1034
|
||||
IEEE 802.11 RSNA Error Report From Station 1035
|
||||
IEEE 802.11 Station 1036
|
||||
IEEE 802.11 Station QoS Profile 1037
|
||||
IEEE 802.11 Station Session Key 1038
|
||||
IEEE 802.11 Statistics 1039
|
||||
IEEE 802.11 Supported Rates 1040
|
||||
IEEE 802.11 Tx Power 1041
|
||||
IEEE 802.11 Tx Power Level 1042
|
||||
IEEE 802.11 Update Station QoS 1043
|
||||
IEEE 802.11 Update WLAN 1044
|
||||
IEEE 802.11 WTP Quality of Service 1045
|
||||
IEEE 802.11 WTP Radio Configuration 1046
|
||||
IEEE 802.11 WTP Radio Fail Alarm Indication 1047
|
||||
*/
|
||||
|
||||
#define CWMSGELEM_80211_WTP_RADIO_INFO 1048
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Messages
|
||||
*/
|
||||
|
||||
#define CWMSG_80211_WLAN_CONFIGURATION_REQUEST 3398913
|
||||
#define CWMSG_80211_WLAN_CONFIGURATION_REPONSE 3398914
|
||||
|
||||
|
||||
|
||||
/*
|
||||
#define CW_IEEE80211_RADIO_TYPE_B (1<<24)
|
||||
#define CW_IEEE80211_RADIO_TYPE_A (2<<24)
|
||||
#define CW_IEEE80211_RADIO_TYPE_G (4<<24)
|
||||
#define CW_IEEE80211_RADIO_TYPE_N (8<<24)
|
||||
*/
|
||||
|
||||
#define CW_80211_RADIO_TYPE_B (1)
|
||||
#define CW_80211_RADIO_TYPE_A (2)
|
||||
#define CW_80211_RADIO_TYPE_G (4)
|
||||
#define CW_80211_RADIO_TYPE_N (8)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
struct cwwlan {
|
||||
uint8_t rid; /* Radio ID */
|
||||
uint8_t wid; /* WLAN ID */
|
||||
uint16_t capab;
|
||||
uint8_t key_index;
|
||||
uint8_t key_status;
|
||||
uint16_t key_length;
|
||||
uint8_t * key;
|
||||
uint8_t group_tsc[6];
|
||||
uint8_t qos;
|
||||
uint8_t auth_type;
|
||||
uint8_t mac_mode;
|
||||
uint8_t tunnel_mode;
|
||||
uint8_t suppress_ssid;
|
||||
bstr_t ssid;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
extern int cw_readelem_ieee80211_wtp_radio_info(void *dst,int type,uint8_t *msgelem, int len);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user