Skip to content

Commit 2cde553

Browse files
authored
adds verbose message for WPA3 (espressif#6812)
1 parent adb88d7 commit 2cde553

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

libraries/WiFi/src/WiFiGeneric.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,15 @@ static const char * auth_mode_str(int authmode)
261261
case WIFI_AUTH_WPA2_ENTERPRISE:
262262
return ("WPA2_ENTERPRISE");
263263
break;
264+
case WIFI_AUTH_WPA3_PSK:
265+
return ("WPA3_PSK");
266+
break;
267+
case WIFI_AUTH_WPA2_WPA3_PSK:
268+
return ("WPA2_WPA3_PSK");
269+
break;
270+
case WIFI_AUTH_WAPI_PSK:
271+
return ("WPAPI_PSK");
272+
break;
264273
default:
265274
break;
266275
}

0 commit comments

Comments
 (0)