Merge "Add PROTOCOL_UNKOWN" into tm-dev am: e97d1e390a

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

Change-Id: Ie605802746530ce06c8b2d172131132aba138182
This commit is contained in:
Ling Ma
2022-03-01 17:33:49 +00:00
committed by Automerger Merge Worker

View File

@@ -369,6 +369,10 @@ public class ApnSetting implements Parcelable {
public @interface AuthType {} public @interface AuthType {}
// Possible values for protocol which is defined in TS 27.007 section 10.1.1. // 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. */ /** Internet protocol. */
public static final int PROTOCOL_IP = 0; public static final int PROTOCOL_IP = 0;
/** Internet protocol, version 6. */ /** Internet protocol, version 6. */