commit | 02d2df7135351dad3ae5f11295fca50a483f8754 | [log] [tgz] |
---|---|---|
author | Sarah Chin <sarahchin@google.com> | Tue Dec 28 23:06:10 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Dec 28 23:06:10 2021 +0000 |
tree | 233f020ebd683d1a6afa7703b2fad42157c53b75 | |
parent | d563e5bc9e8225744b38d3ae2644a6e4d045984a [diff] | |
parent | c7b6c928a0e4ef72e3ad27dcdc6e23d03ec07c00 [diff] |
Merge "Add new fields to DataProfile"
diff --git a/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl b/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl index cfcd42c..9df687c 100644 --- a/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl +++ b/radio/aidl/aidl_api/android.hardware.radio.data/current/android/hardware/radio/data/DataProfileInfo.aidl
@@ -52,6 +52,7 @@ int mtuV6; boolean preferred; boolean persistent; + boolean alwaysOn; const int ID_DEFAULT = 0; const int ID_TETHERED = 1; const int ID_IMS = 2;
diff --git a/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl b/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl index 7657fc9..a14963f 100644 --- a/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl +++ b/radio/aidl/android/hardware/radio/data/DataProfileInfo.aidl
@@ -115,4 +115,11 @@ * 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; }