|
@@ -225,8 +225,27 @@ typedef struct tLimPreAuthTable {
|
|
|
tLimPreAuthNode **pTable;
|
|
|
} tLimPreAuthTable, *tpLimPreAuthTable;
|
|
|
|
|
|
-/* / Per STA context structure definition */
|
|
|
-typedef struct sLimMlmStaContext {
|
|
|
+/**
|
|
|
+ * struct lim_sta_context - LIM per STA structure
|
|
|
+ * @mlmState: LIM State
|
|
|
+ * @authType: Authentication algorithm
|
|
|
+ * @akm_type: AKM of the connection
|
|
|
+ * @listenInterval: Listen interval
|
|
|
+ * @capabilityInfo: Capabilities
|
|
|
+ * @disassocReason: Disassociation reason code
|
|
|
+ * @resultCode: Result code
|
|
|
+ * @subType: Indicates association or reassociation
|
|
|
+ * @updateContext: Update context
|
|
|
+ * @schClean: Scheduler clean
|
|
|
+ * @htCapability: 802.11n HT capability
|
|
|
+ * @vhtCapability: 802.11ac VHT capability
|
|
|
+ * @cleanupTrigger: Cleanup trigger
|
|
|
+ * @protStatusCode: Protocol Status code
|
|
|
+ * @he_capable: 802.11ax HE capability
|
|
|
+ * @owe_ie: Pointer to OWE IE
|
|
|
+ * @owe_ie_len: Length of OWE IE
|
|
|
+ */
|
|
|
+struct lim_sta_context {
|
|
|
tLimMlmStates mlmState;
|
|
|
tAniAuthType authType; /* auth algo in auth frame */
|
|
|
enum ani_akm_type akm_type; /* akm in rsn/wpa ie */
|
|
@@ -250,7 +269,7 @@ typedef struct sLimMlmStaContext {
|
|
|
bool force_1x1;
|
|
|
uint8_t *owe_ie;
|
|
|
uint32_t owe_ie_len;
|
|
|
-} tLimMlmStaContext, *tpLimMlmStaContext;
|
|
|
+};
|
|
|
|
|
|
/* Structure definition to hold deferred messages queue parameters */
|
|
|
typedef struct sLimDeferredMsgQParams {
|