Skip to content

Commit

Permalink
[nrf fromlist] nrfwifi: Display EAP_TLS_SHA256 security in scan results
Browse files Browse the repository at this point in the history
EAP_TLS_SHA256 was being identified as EAP_TLS in display scan
results. Identify the security type in scan results sent by
RPU and display accordingly.

Upstream PR #: 81514

Signed-off-by: Ravi Dondaputi <[email protected]>
(cherry picked from commit 4092e6d)
  • Loading branch information
rado17 authored and rlubos committed Dec 6, 2024
1 parent 867d00e commit a97deec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/wifi/nrf_wifi/src/wifi_mgmt_scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,8 @@ static inline enum wifi_security_type drv_to_wifi_mgmt(int drv_security_type)
return WIFI_SECURITY_TYPE_WAPI;
case NRF_WIFI_EAP:
return WIFI_SECURITY_TYPE_EAP;
case NRF_WIFI_EAP_TLS_SHA256:
return WIFI_SECURITY_TYPE_EAP_TLS_SHA256;
default:
return WIFI_SECURITY_TYPE_UNKNOWN;
}
Expand Down

0 comments on commit a97deec

Please sign in to comment.