We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04364be commit bf3bf7cCopy full SHA for bf3bf7c
1 file changed
wifi/java/android/net/wifi/WifiWatchdogStateMachine.java
@@ -881,6 +881,9 @@ private boolean doArpTest(int type) {
881
//test to avoid any wifi connectivity issues
882
loge("ARP test initiation failure: " + se);
883
success = true;
884
+ } catch (IllegalArgumentException e) {
885
+ // ArpPeer throws exception for IPv6 address
886
+ success = true;
887
}
888
889
return success;
0 commit comments