From 61b412385d115ff9a0b81808dfbd34b54c838fe5 Mon Sep 17 00:00:00 2001 From: Aswin Sankar Date: Tue, 17 Jan 2023 12:26:35 -0800 Subject: [PATCH] IWLAN DataFailCause for unexpected tunnel state - Add a new DataFailCause 'IWLAN_TUNNEL_DOES_NOT_EXIST' to identify cases where Iwlan is expected to update or tear down a tunnel for a specific PDN, but no tunnel exists for that PDN. Bug: 261595691 Test: EpdgTunnelManagerTest#testCloseTunnelWithNoTunnelConfig Change-Id: I4e10180cf866fd8061c4219f8e73d4800dd3d7cc --- core/api/current.txt | 1 + telephony/java/android/telephony/DataFailCause.java | 3 +++ 2 files changed, 4 insertions(+) diff --git a/core/api/current.txt b/core/api/current.txt index 46318ae6f7ef3..8549577fc67ac 100644 --- a/core/api/current.txt +++ b/core/api/current.txt @@ -42301,6 +42301,7 @@ package android.telephony { field public static final int IWLAN_SEMANTIC_ERROR_IN_THE_TFT_OPERATION = 8241; // 0x2031 field public static final int IWLAN_SYNTACTICAL_ERRORS_IN_PACKET_FILTERS = 8245; // 0x2035 field public static final int IWLAN_SYNTACTICAL_ERROR_IN_THE_TFT_OPERATION = 8242; // 0x2032 + field public static final int IWLAN_TUNNEL_NOT_FOUND = 16390; // 0x4006 field public static final int IWLAN_UNAUTHENTICATED_EMERGENCY_NOT_SUPPORTED = 11055; // 0x2b2f field public static final int IWLAN_USER_UNKNOWN = 9001; // 0x2329 field public static final int LIMITED_TO_IPV4 = 2234; // 0x8ba diff --git a/telephony/java/android/telephony/DataFailCause.java b/telephony/java/android/telephony/DataFailCause.java index b83b400cb811c..c4d760f8db525 100644 --- a/telephony/java/android/telephony/DataFailCause.java +++ b/telephony/java/android/telephony/DataFailCause.java @@ -1012,6 +1012,8 @@ public final class DataFailCause { public static final int IWLAN_DNS_RESOLUTION_NAME_FAILURE = 0x4004; /** No response received from the DNS Server due to a timeout*/ public static final int IWLAN_DNS_RESOLUTION_TIMEOUT = 0x4005; + /** Expected to update or bring down an ePDG tunnel, but no tunnel found*/ + public static final int IWLAN_TUNNEL_NOT_FOUND = 0x4006; // OEM sepecific error codes. To be used by OEMs when they don't // want to reveal error code which would be replaced by ERROR_UNSPECIFIED @@ -1505,6 +1507,7 @@ public final class DataFailCause { sFailCauseMap.put(IWLAN_IKEV2_CERT_INVALID, "IWLAN_IKEV2_CERT_INVALID"); sFailCauseMap.put(IWLAN_DNS_RESOLUTION_NAME_FAILURE, "IWLAN_DNS_RESOLUTION_NAME_FAILURE"); sFailCauseMap.put(IWLAN_DNS_RESOLUTION_TIMEOUT, "IWLAN_DNS_RESOLUTION_TIMEOUT"); + sFailCauseMap.put(IWLAN_TUNNEL_NOT_FOUND, "IWLAN_TUNNEL_NOT_FOUND"); sFailCauseMap.put(OEM_DCFAILCAUSE_1, "OEM_DCFAILCAUSE_1"); sFailCauseMap.put(OEM_DCFAILCAUSE_2, "OEM_DCFAILCAUSE_2"); sFailCauseMap.put(OEM_DCFAILCAUSE_3, "OEM_DCFAILCAUSE_3");