commit | 1657db8206ad963a1ac4eb9c235fc86d3a64f656 | [log] [tgz] |
---|---|---|
author | Sarah Chin <sarahchin@google.com> | Tue Nov 16 12:45:19 2021 -0800 |
committer | Sarah Chin <sarahchin@google.com> | Wed Nov 17 16:19:39 2021 -0800 |
tree | 8ab9f083ab2a820e9e940c50067bd52b2f653e6a | |
parent | 1ffcc2f3515f6d99e5259f09bb94d6671e8991b1 [diff] |
Add new fields to DataProfile Test: build Bug: 198822816 Change-Id: I6c756d42616149a2eed0ba705ffaaeb17d7a014f
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; }