Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2cde553

Browse files
authoredMay 27, 2022
adds verbose message for WPA3 (#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

Lines changed: 9 additions & 0 deletions
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)
Please sign in to comment.