sta_flags.h
Go to the documentation of this file.00001
00016 #ifndef STA_FLAGS_H
00017 #define STA_FLAGS_H
00018
00019
00020 #define WLAN_STA_AUTH BIT(0)
00021 #define WLAN_STA_ASSOC BIT(1)
00022 #define WLAN_STA_PS BIT(2)
00023 #define WLAN_STA_TIM BIT(3)
00024 #define WLAN_STA_PERM BIT(4)
00025 #define WLAN_STA_AUTHORIZED BIT(5)
00026 #define WLAN_STA_PENDING_POLL BIT(6)
00027 #define WLAN_STA_SHORT_PREAMBLE BIT(7)
00028 #define WLAN_STA_PREAUTH BIT(8)
00029 #define WLAN_STA_WMM BIT(9)
00030 #define WLAN_STA_MFP BIT(10)
00031 #define WLAN_STA_HT BIT(11)
00032 #define WLAN_STA_WPS BIT(12)
00033 #define WLAN_STA_MAYBE_WPS BIT(13)
00034 #define WLAN_STA_NONERP BIT(31)
00035
00036 #endif
00037