Add ApnType.ENTERPRISE

Test: build succeed
Bug: 214240937
Change-Id: I718ff225c7fc9b9667f6360ae623e5d8bbf1f03c
This commit is contained in:
Ling Ma 2022-01-13 19:55:45 +00:00
parent 962deadfd2
commit 9918ede8ce
2 changed files with 15 additions and 0 deletions

View file

@ -47,4 +47,7 @@ enum ApnTypes {
EMERGENCY = 512,
MCX = 1024,
XCAP = 2048,
VSIM = 4096,
BIP = 8192,
ENTERPRISE = 16384,
}

View file

@ -73,4 +73,16 @@ enum ApnTypes {
* APN type for XCAP
*/
XCAP = 1 << 11,
/**
* APN type for VSIM.
*/
VSIM = 1 << 12,
/**
* APN type for BIP.
*/
BIP = 1 << 13,
/**
* APN type for ENTERPRISE
*/
ENTERPRISE = 1 << 14
}