|
@@ -5611,9 +5611,9 @@ int hdd_set_csr_auth_type(struct hdd_adapter *adapter,
|
|
|
|
|
|
roam_profile = hdd_roam_profile(adapter);
|
|
|
roam_profile->AuthType.numEntries = 1;
|
|
|
- hdd_debug("auth_type = %d rsn_auth_type %d wpa_versions %d",
|
|
|
+ hdd_debug("auth_type = %d rsn_auth_type %d wpa_versions %d key_mgmt : 0x%x",
|
|
|
sta_ctx->conn_info.auth_type, rsn_auth_type,
|
|
|
- sta_ctx->wpa_versions);
|
|
|
+ sta_ctx->wpa_versions, key_mgmt);
|
|
|
|
|
|
switch (sta_ctx->conn_info.auth_type) {
|
|
|
case eCSR_AUTH_TYPE_OPEN_SYSTEM:
|
|
@@ -5711,6 +5711,10 @@ int hdd_set_csr_auth_type(struct hdd_adapter *adapter,
|
|
|
/* OWE case */
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
eCSR_AUTH_TYPE_OWE;
|
|
|
+ } else if (rsn_auth_type == eCSR_AUTH_TYPE_SAE) {
|
|
|
+ /* SAE with open authentication case */
|
|
|
+ roam_profile->AuthType.authType[0] =
|
|
|
+ eCSR_AUTH_TYPE_SAE;
|
|
|
} else if ((rsn_auth_type ==
|
|
|
eCSR_AUTH_TYPE_SUITEB_EAP_SHA256) &&
|
|
|
((key_mgmt & HDD_AUTH_KEY_MGMT_802_1X)
|