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

Commit 2513ac70 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add ApnType.ENTERPRISE"

parents 94da2bcc 9918ede8
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
}