diff options
| author | 2022-02-14 10:59:01 -0800 | |
|---|---|---|
| committer | 2022-02-18 15:54:43 -0800 | |
| commit | 7319c5f3fd195755bdc08437d20f68ac18f90c0f (patch) | |
| tree | 1279548badb6bd0867f8080c5e614b70ac9d9f50 | |
| parent | b70d7493c6e6d0618cc0ea31d5cb3d71b395aae6 (diff) | |
Add PROTOCOL_UNKOWN
Test: build
Bug: 217375910
Change-Id: I5bd0351925d27bb2178d4cd0cc93197f463236cd
| -rw-r--r-- | telephony/java/android/telephony/data/ApnSetting.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/telephony/java/android/telephony/data/ApnSetting.java b/telephony/java/android/telephony/data/ApnSetting.java index 8e10f6b8e69e..fc94ebf2cc37 100644 --- a/telephony/java/android/telephony/data/ApnSetting.java +++ b/telephony/java/android/telephony/data/ApnSetting.java @@ -369,6 +369,10 @@ public class ApnSetting implements Parcelable { public @interface AuthType {} // Possible values for protocol which is defined in TS 27.007 section 10.1.1. + /** Unknown protocol. + * @hide + */ + public static final int PROTOCOL_UNKNOWN = -1; /** Internet protocol. */ public static final int PROTOCOL_IP = 0; /** Internet protocol, version 6. */ |