Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5aebcf5f authored by Ling Ma's avatar Ling Ma
Browse files

Add ApnType.ENTERPRISE

Test: build succeed
Bug: 214240937
Change-Id: I718ff225c7fc9b9667f6360ae623e5d8bbf1f03c
Merged-In: I718ff225c7fc9b9667f6360ae623e5d8bbf1f03c
parent ed699821
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -47,4 +47,7 @@ enum ApnTypes {
  EMERGENCY = 512,
  MCX = 1024,
  XCAP = 2048,
  VSIM = 4096,
  BIP = 8192,
  ENTERPRISE = 16384,
}
+12 −0
Original line number Diff line number Diff line
@@ -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
}