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

Commit 30a039ae authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Add DataFailCause for IWLAN_CONGESTION." am: 090a2446 am: 0813324f...

Merge "Add DataFailCause for IWLAN_CONGESTION." am: 090a2446 am: 0813324f am: 1bcb4198 am: 324484c9

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2197571



Change-Id: I7408961e5dd2d5e75c94cc70e9823a755a4f8c28
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 169321f5 324484c9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -42197,6 +42197,7 @@ package android.telephony {
    field public static final int IRAT_HANDOVER_FAILED = 2194; // 0x892
    field public static final int IS707B_MAX_ACCESS_PROBES = 2089; // 0x829
    field public static final int IWLAN_AUTHORIZATION_REJECTED = 9003; // 0x232b
    field public static final int IWLAN_CONGESTION = 15500; // 0x3c8c
    field public static final int IWLAN_DNS_RESOLUTION_NAME_FAILURE = 16388; // 0x4004
    field public static final int IWLAN_DNS_RESOLUTION_TIMEOUT = 16389; // 0x4005
    field public static final int IWLAN_IKEV2_AUTH_FAILURE = 16385; // 0x4001
+9 −2
Original line number Diff line number Diff line
@@ -987,8 +987,15 @@ public final class DataFailCause {
    /** The ePDG does not support un-authenticated IMSI based emergency PDN bringup **/
    public static final int IWLAN_UNAUTHENTICATED_EMERGENCY_NOT_SUPPORTED = 0x2B2F;

    // Device is unable to establish an IPSec tunnel with the ePDG for any reason
    // e.g authentication fail or certificate validation or DNS Resolution and timeout failure.
    // The below error causes are relevant when the device is unable to establish an IPSec tunnel
    // with the ePDG for any reason, e.g. authentication fail or certificate validation or DNS
    // Resolution and timeout failure.

    /**
     * The requested service was rejected because of congestion in the network while accessing the
     * IWLAN ePDG. Defined in 3GPP TS 24.502, Section 9.2.4.2.
     */
    public static final int IWLAN_CONGESTION = 0x3C8C;

    /** IKE configuration error resulting in failure  */
    public static final int IWLAN_IKEV2_CONFIG_FAILURE = 0x4000;