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

Commit fbd5421a authored by Hunsuk Choi's avatar Hunsuk Choi
Browse files

Add mcc and mnc to EmergencyRegResult

Indicating the identity of PLMN.

Test: Functional test on test device.
Bug: 243344927

Change-Id: I385d2099893d3b68c2520b8fb7a732c05dfdf366
parent a461a198
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -40,4 +40,6 @@ parcelable EmergencyRegResult {
  boolean isEmcBearerSupported;
  byte nwProvidedEmc;
  byte nwProvidedEmf;
  String mcc;
  String mnc;
}
+6 −0
Original line number Diff line number Diff line
@@ -54,4 +54,10 @@ parcelable EmergencyRegResult {
     * This should not be set if UE is not in 5G mode.
     */
    byte nwProvidedEmf;

    /** 3-digit Mobile Country Code, 000..999, empty string if unknown. */
    String mcc;

    /** 2 or 3-digit Mobile Network Code, 00..999, empty string if unknown. */
    String mnc;
}