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

Commit c7b6c928 authored by Sarah Chin's avatar Sarah Chin
Browse files

Add new fields to DataProfile

Test: build
Bug: 198822816
Change-Id: I6c756d42616149a2eed0ba705ffaaeb17d7a014f
Merged-In: I6c756d42616149a2eed0ba705ffaaeb17d7a014f
parent 81c9e603
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@ parcelable DataProfileInfo {
  int mtuV6;
  boolean preferred;
  boolean persistent;
  boolean alwaysOn;
  const int ID_DEFAULT = 0;
  const int ID_TETHERED = 1;
  const int ID_IMS = 2;
+7 −0
Original line number Diff line number Diff line
@@ -115,4 +115,11 @@ parcelable DataProfileInfo {
     * If the same data profile exists, this data profile must overwrite it.
     */
    boolean persistent;
    /**
     * Indicates the PDU session brought up by this data profile should be always-on.
     * An always-on PDU Session is a PDU Session for which User Plane resources have to be
     * activated during every transition from CM-IDLE mode to CM-CONNECTED state.
     * See 3GPP TS 23.501 section 5.6.13 for the details.
     */
    boolean alwaysOn;
}