diff options
author | Hai Shalom <haishalom@google.com> | 2020-01-06 21:14:06 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-01-06 21:14:06 +0000 |
commit | a5173faa2f69bf4977b88dd1f67ebf63f877cf92 (patch) | |
tree | f00d0864fa85f4ac600df7ec21c2d6b4e3f65adc | |
parent | 7ee21abb8f67e0119c03e5bfec7cbcbe49236b16 (diff) | |
parent | 0a5b207bb49d8d5d1aa81430839e3ba61beb0e07 (diff) |
Merge "[Encrypted IMSI] Add support for EAP Method prefix"
-rwxr-xr-x | telephony/java/android/telephony/CarrierConfigManager.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/telephony/java/android/telephony/CarrierConfigManager.java b/telephony/java/android/telephony/CarrierConfigManager.java index eea08dc6c76b..fdf88497db02 100755 --- a/telephony/java/android/telephony/CarrierConfigManager.java +++ b/telephony/java/android/telephony/CarrierConfigManager.java @@ -2481,7 +2481,6 @@ public class CarrierConfigManager { */ public static final String IMSI_KEY_AVAILABILITY_INT = "imsi_key_availability_int"; - /** * Key identifying if the CDMA Caller ID presentation and suppression MMI codes * should be converted to 3GPP CLIR codes when a multimode (CDMA+UMTS+LTE) device is roaming @@ -3120,6 +3119,16 @@ public class CarrierConfigManager { "data_switch_validation_timeout_long"; /** + * Specifies whether the system should prefix the EAP method to the anonymous identity. + * The following prefix will be added if this key is set to TRUE: + * EAP-AKA: "0" + * EAP-SIM: "1" + * EAP-AKA_PRIME: "6" + * @hide + */ + public static final String ENABLE_EAP_METHOD_PREFIX_BOOL = "enable_eap_method_prefix_bool"; + + /** * GPS configs. See the GNSS HAL documentation for more details. */ public static final class Gps { @@ -3934,6 +3943,7 @@ public class CarrierConfigManager { CellSignalStrengthLte.USE_RSRP | CellSignalStrengthLte.USE_RSSNR); // Default wifi configurations. sDefaults.putAll(Wifi.getDefaults()); + sDefaults.putBoolean(ENABLE_EAP_METHOD_PREFIX_BOOL, false); } /** |