Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f69c3647 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 7069 into donut

* changes:
  Make VPN connect even when DNS is not present and other fixes.
parents b29d573a af8dc57d
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -26,8 +26,13 @@ package android.net.vpn;
 * {@link DISCONNECTING} and then {@link IDLE}.
 * {@link CANCELLED} is a state when a VPN connection attempt is aborted, and
 * is in transition to {@link IDLE}.
 * The {@link UNUSABLE} state indicates that the profile is not in a state for
 * connecting due to possibly the integrity of the fields or another profile is
 * connecting etc.
 * The {@link UNKNOWN} state indicates that the profile state is to be
 * determined.
 * {@hide}
 */
public enum VpnState {
    CONNECTING, DISCONNECTING, CANCELLED, CONNECTED, IDLE
    CONNECTING, DISCONNECTING, CANCELLED, CONNECTED, IDLE, UNUSABLE, UNKNOWN
}