1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef STA_FLAGS_H
- #define STA_FLAGS_H
- #define WLAN_STA_AUTH BIT(0)
- #define WLAN_STA_ASSOC BIT(1)
- #define WLAN_STA_PS BIT(2)
- #define WLAN_STA_TIM BIT(3)
- #define WLAN_STA_PERM BIT(4)
- #define WLAN_STA_AUTHORIZED BIT(5)
- #define WLAN_STA_PENDING_POLL BIT(6)
- #define WLAN_STA_SHORT_PREAMBLE BIT(7)
- #define WLAN_STA_PREAUTH BIT(8)
- #define WLAN_STA_WMM BIT(9)
- #define WLAN_STA_MFP BIT(10)
- #define WLAN_STA_HT BIT(11)
- #define WLAN_STA_WPS BIT(12)
- #define WLAN_STA_MAYBE_WPS BIT(13)
- #define WLAN_STA_NONERP BIT(31)
- #endif
|