|
@@ -45,6 +45,7 @@ extern "C" {
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#define WAKE_LOCK_NAME_LEN 80
|
|
|
+#define RSN_OUI_SIZE 4
|
|
|
|
|
|
/**
|
|
|
* enum wifi_frm_type: type of frame
|
|
@@ -560,6 +561,27 @@ enum resource_failure_type {
|
|
|
WIFI_EVENT_MEMORY_FAILURE,
|
|
|
};
|
|
|
|
|
|
+/*-------------------------------------------------------------------------
|
|
|
+ Event ID: EVENT_WLAN_RSN_INFO
|
|
|
+ -------------------------------------------------------------------------
|
|
|
+ */
|
|
|
+/**
|
|
|
+ * struct event_wlan_csr_rsn_info - Structure holding the
|
|
|
+ * RSN information for assoc request
|
|
|
+ * @akm_suite: Gives information about akm suites used in assoc request
|
|
|
+ * @ucast_cipher: Unicast cipher used in assoc request
|
|
|
+ * @mcast_cipher: Multi cast cipher used in assoc request
|
|
|
+ * @group_mgmt: Requested group mgmt cipher suite
|
|
|
+ *
|
|
|
+ * This structure will hold the RSN information for assoc request
|
|
|
+ */
|
|
|
+struct event_wlan_csr_rsn_info {
|
|
|
+ uint8_t akm_suite[RSN_OUI_SIZE];
|
|
|
+ uint8_t ucast_cipher[RSN_OUI_SIZE];
|
|
|
+ uint8_t mcast_cipher[RSN_OUI_SIZE];
|
|
|
+ uint8_t group_mgmt[RSN_OUI_SIZE];
|
|
|
+};
|
|
|
+
|
|
|
/*-------------------------------------------------------------------------
|
|
|
Event ID: EVENT_WLAN_WAKE_LOCK
|
|
|
------------------------------------------------------------------------*/
|