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

Commit 5ee0d153 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Add ApnType.ENTERPRISE"

parents 26423c74 5aebcf5f
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -47,4 +47,7 @@ enum ApnTypes {
  EMERGENCY = 512,
  EMERGENCY = 512,
  MCX = 1024,
  MCX = 1024,
  XCAP = 2048,
  XCAP = 2048,
  VSIM = 4096,
  BIP = 8192,
  ENTERPRISE = 16384,
}
}
+12 −0
Original line number Original line Diff line number Diff line
@@ -73,4 +73,16 @@ enum ApnTypes {
     * APN type for XCAP
     * APN type for XCAP
     */
     */
    XCAP = 1 << 11,
    XCAP = 1 << 11,
    /**
     * APN type for VSIM.
     */
    VSIM = 1 << 12,
    /**
     * APN type for BIP.
     */
    BIP = 1 << 13,
    /**
     * APN type for ENTERPRISE
     */
    ENTERPRISE = 1 << 14
}
}