Added a security type for FT PSK 37/184537/5
authorJaehyun Kim <jeik01.kim@samsung.com>
Wed, 18 Jul 2018 12:27:14 +0000 (21:27 +0900)
committerSaurav Babu <saurav.babu@samsung.com>
Fri, 24 Aug 2018 03:37:31 +0000 (09:07 +0530)
Change-Id: Iab968d8c1aa56ab9e1fbf9f557990c85bb5afdb7
Signed-off-by: Jaehyun Kim <jeik01.kim@samsung.com>
include/wifi-manager.h
tool/wifi_mgr_tool.c

index 9b74a69..b7b84c7 100755 (executable)
@@ -373,6 +373,7 @@ typedef enum {
        WIFI_MANAGER_SECURITY_TYPE_WPA_PSK = 2,     /**< WPA-PSK */
        WIFI_MANAGER_SECURITY_TYPE_WPA2_PSK = 3,    /**< WPA2-PSK */
        WIFI_MANAGER_SECURITY_TYPE_EAP = 4,         /**< EAP */
+       WIFI_MANAGER_SECURITY_TYPE_WPA_FT_PSK = 5,  /**< FT-PSK (Since 5.0) */
 } wifi_manager_security_type_e;
 
 /**
index 02e4b78..0b33a92 100755 (executable)
@@ -494,6 +494,8 @@ const char *test_wifi_mgr_sec_type_to_string(wifi_manager_security_type_e type)
                return "WPA2";
        case WIFI_MANAGER_SECURITY_TYPE_EAP:
                return "EAP";
+       case WIFI_MANAGER_SECURITY_TYPE_WPA_FT_PSK:
+               return "FT_PSK";
        }
 
        return "Unknown";