We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4e34ae + 5770b2d commit 8f7100aCopy full SHA for 8f7100a
1 file changed
wifi/java/android/net/wifi/WifiStateMachine.java
@@ -3535,6 +3535,13 @@ public boolean processMessage(Message message) {
3535
if (DBG) log("Network connection lost");
3536
handleNetworkDisconnect();
3537
break;
3538
+ case WifiMonitor.AUTHENTICATION_FAILURE_EVENT:
3539
+ // Disregard auth failure events during WPS connection. The
3540
+ // EAP sequence is retried several times, and there might be
3541
+ // failures (especially for wps pin). We will get a WPS_XXX
3542
+ // event at the end of the sequence anyway.
3543
+ if (DBG) log("Ignore auth failure during WPS connection");
3544
+ break;
3545
case WifiMonitor.SUPPLICANT_STATE_CHANGE_EVENT:
3546
//Throw away supplicant state changes when WPS is running.
3547
//We will start getting supplicant state changes once we get
0 commit comments