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

Commit c5314857 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Add ApnType.ENTERPRISE" am: 5ee0d153 am: e79c63ef

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1955202

Change-Id: Ifb6472321ba2ca2ecbb7962563c115760b8dd09f
parents acebb3cc e79c63ef
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
}