Skip to content

Commit a97deec

Browse files
rado17rlubos
authored andcommitted
[nrf fromlist] nrfwifi: Display EAP_TLS_SHA256 security in scan results
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)
1 parent 867d00e commit a97deec

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/wifi/nrf_wifi/src/wifi_mgmt_scan.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,8 @@ static inline enum wifi_security_type drv_to_wifi_mgmt(int drv_security_type)
297297
return WIFI_SECURITY_TYPE_WAPI;
298298
case NRF_WIFI_EAP:
299299
return WIFI_SECURITY_TYPE_EAP;
300+
case NRF_WIFI_EAP_TLS_SHA256:
301+
return WIFI_SECURITY_TYPE_EAP_TLS_SHA256;
300302
default:
301303
return WIFI_SECURITY_TYPE_UNKNOWN;
302304
}

0 commit comments

Comments
 (0)