Merge "Add ApnType.ENTERPRISE"

This commit is contained in:
Treehugger Robot 2022-03-09 17:17:40 +00:00 committed by Gerrit Code Review
commit 5ee0d1534e
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
}