Improve Wi-Fi hand-off am: b9f329f633

Original change: undetermined

Change-Id: I856a3f9e0e79d15cb9d832b910de2439ff996741
This commit is contained in:
Irfan Sheriff
2021-05-31 12:27:15 +00:00
committed by Automerger Merge Worker

View File

@@ -77,7 +77,9 @@ public class NetworkInfo implements Parcelable {
/** Attempt to connect failed. */
FAILED,
/** Access to this network is blocked. */
BLOCKED
BLOCKED,
/** Link has poor connectivity. */
VERIFYING_POOR_LINK
}
/**
@@ -94,6 +96,7 @@ public class NetworkInfo implements Parcelable {
stateMap.put(DetailedState.CONNECTING, State.CONNECTING);
stateMap.put(DetailedState.AUTHENTICATING, State.CONNECTING);
stateMap.put(DetailedState.OBTAINING_IPADDR, State.CONNECTING);
stateMap.put(DetailedState.VERIFYING_POOR_LINK, State.CONNECTING);
stateMap.put(DetailedState.CONNECTED, State.CONNECTED);
stateMap.put(DetailedState.SUSPENDED, State.SUSPENDED);
stateMap.put(DetailedState.DISCONNECTING, State.DISCONNECTING);