summaryrefslogtreecommitdiff
path: root/proto/src
diff options
context:
space:
mode:
author Aishwarya Mallampati <amallampati@google.com> 2024-03-20 20:28:32 +0000
committer Aishwarya Mallampati <amallampati@google.com> 2024-04-04 23:17:08 +0000
commit2c66a73c8f05aec47139158e3deb0cb07ad36ae1 (patch)
treecef9f89dae4cc3879bdc5c49227d8dd75bffc500 /proto/src
parent42e7cd4b3b113b47a5eae2b9fc211c290351ba9f (diff)
Add is_ntn field
is_ntn field is added to below existing atoms: - DataCallSession - VoiceCallSession - CellularServiceState Bug: 330256940 Test: atest Change-Id: I53cfdae62d132c0561f2245d7f8f8dfd171534e5 Merged-In: I53cfdae62d132c0561f2245d7f8f8dfd171534e5
Diffstat (limited to 'proto/src')
-rw-r--r--proto/src/persist_atoms.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/src/persist_atoms.proto b/proto/src/persist_atoms.proto
index e54c969a7c..59b177b55a 100644
--- a/proto/src/persist_atoms.proto
+++ b/proto/src/persist_atoms.proto
@@ -281,6 +281,7 @@ message VoiceCallSession {
optional bool is_iwlan_cross_sim_at_end = 38;
optional bool is_iwlan_cross_sim_at_connected = 39;
optional bool vonr_enabled = 40;
+ optional bool is_ntn = 41;
// Internal use only
optional int64 setup_begin_millis = 10001;
@@ -373,6 +374,7 @@ message DataCallSession {
repeated int32 handover_failure_rat = 21;
optional bool is_non_dds = 22;
optional bool is_iwlan_cross_sim = 23;
+ optional bool is_ntn = 24;
}
message CellularServiceState {
@@ -391,6 +393,7 @@ message CellularServiceState {
optional bool override_voice_service = 13;
optional bool isDataEnabled = 14;
optional bool is_iwlan_cross_sim = 15;
+ optional bool is_ntn = 16;
// Internal use only
optional int64 last_used_millis = 10001;