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

Commit eba83f89 authored by Aishwarya Mallampati's avatar Aishwarya Mallampati Committed by Android (Google) Code Review
Browse files

Merge "Fix enum number in RegistrationFailCause" into main

parents 0061ab1a a4ab299d
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -50,7 +50,11 @@ enum RegistrationFailCause {
  ROAMING_NOT_ALLOWED = 13,
  ROAMING_NOT_ALLOWED = 13,
  GPRS_SERVICES_NOT_ALLOWED_IN_PLMN = 14,
  GPRS_SERVICES_NOT_ALLOWED_IN_PLMN = 14,
  NO_SUITABLE_CELLS = 15,
  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_TEMPORARILY_NOT_REACHABLE = 15,
  MSC_TEMP_NOT_REACHABLE = 16,
  NETWORK_FAILURE = 17,
  NETWORK_FAILURE = 17,
  MAC_FAILURE = 20,
  MAC_FAILURE = 20,
  SYNC_FAILURE = 21,
  SYNC_FAILURE = 21,
+6 −1
Original line number Original line Diff line number Diff line
@@ -86,9 +86,14 @@ enum RegistrationFailCause {
     */
     */
    NO_SUITABLE_CELLS = 15,
    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,
    MSC_TEMPORARILY_NOT_REACHABLE = 15,
    /**
     * 16 - MSC temporarily not reachable
     */
    MSC_TEMP_NOT_REACHABLE = 16,
    /**
    /**
     * 17 - Network Failure
     * 17 - Network Failure
     */
     */