Add PROTOCOL_UNKOWN

Test: build
Bug: 217375910
Change-Id: I5bd0351925d27bb2178d4cd0cc93197f463236cd
This commit is contained in:
Ling Ma
2022-02-14 10:59:01 -08:00
parent b70d7493c6
commit 7319c5f3fd

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. */