From: Pranjul Singh Date: Wed, 19 Sep 2018 11:48:14 +0000 (+0530) Subject: [ITC][wifi-manager][ACR-1269][Add a new wifi security type(WPA_FT_PSK)] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a2875599c27dc689a95ffb0bb1b0091882f88e18;p=test%2Ftct%2Fnative%2Fapi.git [ITC][wifi-manager][ACR-1269][Add a new wifi security type(WPA_FT_PSK)] Change-Id: I4b44cabade978be72a92d600761fc8cf793e30d9 Signed-off-by: Pranjul Singh --- diff --git a/src/itc/wifi-manager/ITs-wifi-manager-ap.c b/src/itc/wifi-manager/ITs-wifi-manager-ap.c index 754a272f3..9f3807592 100755 --- a/src/itc/wifi-manager/ITs-wifi-manager-ap.c +++ b/src/itc/wifi-manager/ITs-wifi-manager-ap.c @@ -860,7 +860,8 @@ int ITc_wifi_manager_ap_set_get_security_type_p(void) WIFI_MANAGER_SECURITY_TYPE_WEP, /**< WEP */ WIFI_MANAGER_SECURITY_TYPE_WPA_PSK, /**< WPA-PSK */ WIFI_MANAGER_SECURITY_TYPE_WPA2_PSK, /**< WPA2-PSK */ - WIFI_MANAGER_SECURITY_TYPE_EAP /**< EAP */ + WIFI_MANAGER_SECURITY_TYPE_EAP, /**< EAP */ + WIFI_MANAGER_SECURITY_TYPE_WPA_FT_PSK }; int nEnumSize = sizeof(eWifiManagerSecurityType) / sizeof(eWifiManagerSecurityType[0]); @@ -909,11 +910,11 @@ int ITc_wifi_manager_ap_set_get_encryption_type_p(void) wifi_manager_encryption_type_e eEncryptionType; wifi_manager_encryption_type_e eWifiManagerEncryptionType[] = { - WIFI_MANAGER_SECURITY_TYPE_NONE, /**< Security disabled */ - WIFI_MANAGER_SECURITY_TYPE_WEP, /**< WEP */ - WIFI_MANAGER_SECURITY_TYPE_WPA_PSK, /**< WPA-PSK */ - WIFI_MANAGER_SECURITY_TYPE_WPA2_PSK, /**< WPA2-PSK */ - WIFI_MANAGER_SECURITY_TYPE_EAP /**< EAP */ + WIFI_MANAGER_ENCRYPTION_TYPE_NONE, /**< Security disabled */ + WIFI_MANAGER_ENCRYPTION_TYPE_WEP, /**< WEP */ + WIFI_MANAGER_ENCRYPTION_TYPE_TKIP, /**< WPA-PSK */ + WIFI_MANAGER_ENCRYPTION_TYPE_AES, /**< WPA2-PSK */ + WIFI_MANAGER_ENCRYPTION_TYPE_TKIP_AES_MIXED /**< EAP */ }; int nEnumSize = sizeof(eWifiManagerEncryptionType) / sizeof(eWifiManagerEncryptionType[0]);