Merge "Fix enum number in RegistrationFailCause" into main

This commit is contained in:
Aishwarya Mallampati
2024-01-12 18:27:32 +00:00
committed by Android (Google) Code Review
2 changed files with 10 additions and 1 deletions

View File

@@ -50,7 +50,11 @@ enum RegistrationFailCause {
ROAMING_NOT_ALLOWED = 13,
GPRS_SERVICES_NOT_ALLOWED_IN_PLMN = 14,
NO_SUITABLE_CELLS = 15,
/**
* @deprecated MSC_TEMPORARILY_NOT_REACHABLE value is wrong and should not be used. Use MSC_TEMP_NOT_REACHABLE instead.
*/
MSC_TEMPORARILY_NOT_REACHABLE = 15,
MSC_TEMP_NOT_REACHABLE = 16,
NETWORK_FAILURE = 17,
MAC_FAILURE = 20,
SYNC_FAILURE = 21,

View File

@@ -86,9 +86,14 @@ enum RegistrationFailCause {
*/
NO_SUITABLE_CELLS = 15,
/**
* 16 - MSC temporarily not reachable
* @deprecated MSC_TEMPORARILY_NOT_REACHABLE value is wrong and should not be used.
* Use MSC_TEMP_NOT_REACHABLE instead.
*/
MSC_TEMPORARILY_NOT_REACHABLE = 15,
/**
* 16 - MSC temporarily not reachable
*/
MSC_TEMP_NOT_REACHABLE = 16,
/**
* 17 - Network Failure
*/