From: Jaehyun Kim Date: Thu, 27 Oct 2022 13:37:14 +0000 (+0900) Subject: DA: Fix for SAE security type X-Git-Tag: accepted/tizen/7.0/unified/20230126.170237~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e102209a440b00fffd480d0811c3dd74502e543f;p=platform%2Fcore%2Fapi%2Fwifi-manager.git DA: Fix for SAE security type Change-Id: I37979d6765ceb87e2608349fc3595e4419fcc5b5 Signed-off-by: Jaehyun Kim --- diff --git a/tools/manager-test/wman_test_ap.c b/tools/manager-test/wman_test_ap.c index 35ae5dd..4ee4e95 100644 --- a/tools/manager-test/wman_test_ap.c +++ b/tools/manager-test/wman_test_ap.c @@ -1374,9 +1374,10 @@ int wman_test_connect_hidden_ap(wifi_manager_h wifi) printf("0 -> WIFI_SECURITY_TYPE_NONE\n"); printf("1 -> WIFI_SECURITY_TYPE_WEP\n"); printf("2 -> WIFI_SECURITY_TYPE_WPA_PSK/WIFI_SECURITY_TYPE_WPA2_PSK\n"); + printf("6 -> WIFI_SECURITY_TYPE_SAE\n"); rv = scanf(" %d", &sec_type); - if (sec_type == 1 || sec_type == 2) { + if (sec_type == 1 || sec_type == 2 || sec_type == 6) { printf("Input hidden AP passphrase : "); rv = scanf("%64s", passphrase); } diff --git a/tools/manager-test/wman_test_extension.c b/tools/manager-test/wman_test_extension.c index e7fba0f..5f9f1d5 100644 --- a/tools/manager-test/wman_test_extension.c +++ b/tools/manager-test/wman_test_extension.c @@ -380,6 +380,9 @@ static bool __test_get_netlink_scan_list(wifi_manager_ap_h ap, void *user_data) case WIFI_MANAGER_SECURITY_TYPE_WPA2_PSK: printf("WPA2PSK, "); break; + case WIFI_MANAGER_SECURITY_TYPE_SAE: + printf("SAE, "); + break; case WIFI_MANAGER_SECURITY_TYPE_EAP: printf("EAP, "); break;