diff options
| author | 2024-05-23 23:56:59 +0000 | |
|---|---|---|
| committer | 2024-05-23 23:56:59 +0000 | |
| commit | 52f9466b23ab65239be2cd4c99a53f188650b82a (patch) | |
| tree | 517e304f92a592f38965d5e9bc86bb66083ecec7 | |
| parent | 8cf3a71f71f077ea002e1af2f7bfc7c2b7df19be (diff) | |
| parent | f2abce6cb8e5a7ca5669d1e4fd04d2a9210e2168 (diff) | |
Merge "add overlay configs for last sos message connect and response timeout." into 24D1-dev am: f2abce6cb8
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/27431143
Change-Id: I067436c04fe33e4052ba118e0d1722dff2bee82c
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | core/res/res/values/config_telephony.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/core/res/res/values/config_telephony.xml b/core/res/res/values/config_telephony.xml index e420ffe68e4c..0b351b44965c 100644 --- a/core/res/res/values/config_telephony.xml +++ b/core/res/res/values/config_telephony.xml @@ -384,4 +384,23 @@ <bool name="config_wait_for_device_alignment_in_demo_datagram">false</bool> <java-symbol type="bool" name="config_wait_for_device_alignment_in_demo_datagram" /> + <!-- The time duration in millis after which Telephony will abort the last message datagram + sending requests. Telephony starts a timer when receiving a last message datagram sending + request in either OFF, IDLE, or NOT_CONNECTED state. In NOT_CONNECTED, the duration of the + timer is given by this config. + In OFF or IDLE state, the duration of the timer is the sum of this config and the + config_satellite_modem_image_switching_duration_millis. + --> + <integer name="config_datagram_wait_for_connected_state_for_last_message_timeout_millis">60000</integer> + <java-symbol type="integer" name="config_datagram_wait_for_connected_state_for_last_message_timeout_millis" /> + + <!-- The time duration in millis after which Telephony will abort the last message datagram + sending requests and send failure response to the client that has requested sending the + datagrams. Telephony starts a timer after pushing down the last message datagram sending + request to modem. Before expiry, the timer will be stopped when Telephony receives the response + for the sending request from modem. + --> + <integer name="config_wait_for_datagram_sending_response_for_last_message_timeout_millis">60000</integer> + <java-symbol type="integer" name="config_wait_for_datagram_sending_response_for_last_message_timeout_millis" /> + </resources> |