]> granicus.if.org Git - esp-idf/commitdiff
wpa2: add authenticate type for wpa2 enterprise
authorXiaXiaotian <xiaxiaotian@espressif.com>
Fri, 17 Mar 2017 09:28:01 +0000 (17:28 +0800)
committerXiaXiaotian <xiaxiaotian@espressif.com>
Fri, 17 Mar 2017 09:28:01 +0000 (17:28 +0800)
components/esp32/include/esp_wifi_types.h

index 88ad3dcf5b694c702bbb0c4210a250072dbaa995..2b30f5b8ba381ca8415c3962b19f94156d0f4bc3 100755 (executable)
@@ -49,11 +49,12 @@ typedef enum {
 } wifi_country_t;
 
 typedef enum {
-    WIFI_AUTH_OPEN = 0,      /**< authenticate mode : open */
-    WIFI_AUTH_WEP,           /**< authenticate mode : WEP */
-    WIFI_AUTH_WPA_PSK,       /**< authenticate mode : WPA_PSK */
-    WIFI_AUTH_WPA2_PSK,      /**< authenticate mode : WPA2_PSK */
-    WIFI_AUTH_WPA_WPA2_PSK,  /**< authenticate mode : WPA_WPA2_PSK */
+    WIFI_AUTH_OPEN = 0,         /**< authenticate mode : open */
+    WIFI_AUTH_WEP,              /**< authenticate mode : WEP */
+    WIFI_AUTH_WPA_PSK,          /**< authenticate mode : WPA_PSK */
+    WIFI_AUTH_WPA2_PSK,         /**< authenticate mode : WPA2_PSK */
+    WIFI_AUTH_WPA_WPA2_PSK,     /**< authenticate mode : WPA_WPA2_PSK */
+    WIFI_AUTH_WPA2_ENTERPRISE,  /**< authenticate mode : WPA2_ENTERPRISE */
     WIFI_AUTH_MAX
 } wifi_auth_mode_t;