diff options
author | Daniel Bright <dbright@google.com> | 2020-10-30 14:45:00 -0700 |
---|---|---|
committer | Daniel Bright <dbright@google.com> | 2020-11-20 12:23:43 -0800 |
commit | 926aff5e7bcca7a31b20525fca1278e77750c18a (patch) | |
tree | 42ef60c014e1702b40b0e5a04141ac21a1611a4b /telephony/java/com/android/internal | |
parent | 5b38038d57cf8b346a887feadfd36fea7d48a709 (diff) |
Add support for pdu session id
Added startHandover and cancelHandover to DataService and DataServiceManager
so that it can be called by data connection
Test: Tested that handover still worked with logs. IWlan -> Cell + Cell -> IWlan
Bug: 155176305
Merged-In: Ia59d7e9bf9a450da4b51a2884166d3b0fa93a7c9
Change-Id: Ia59d7e9bf9a450da4b51a2884166d3b0fa93a7c9
Diffstat (limited to 'telephony/java/com/android/internal')
-rw-r--r-- | telephony/java/com/android/internal/telephony/RILConstants.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java index 91607462c29f..9d4072f1cf1c 100644 --- a/telephony/java/com/android/internal/telephony/RILConstants.java +++ b/telephony/java/com/android/internal/telephony/RILConstants.java @@ -517,7 +517,7 @@ public interface RILConstants { int RIL_REQUEST_IS_NR_DUAL_CONNECTIVITY_ENABLED = 214; int RIL_REQUEST_ALLOCATE_PDU_SESSION_ID = 215; int RIL_REQUEST_RELEASE_PDU_SESSION_ID = 216; - int RIL_REQUEST_BEGIN_HANDOVER = 217; + int RIL_REQUEST_START_HANDOVER = 217; int RIL_REQUEST_CANCEL_HANDOVER = 218; /* Responses begin */ |