diff options
author | 2024-02-28 13:59:15 +0000 | |
---|---|---|
committer | 2024-03-08 00:38:05 +0000 | |
commit | e8f6b72804cc425505387bd548fb12e8e3c38897 (patch) | |
tree | 07781bc412f05ee912df4f30e3e589346be2d3f9 /proto/src | |
parent | 3d46a3eea83338e93e693a41de71b81ff1920722 (diff) |
Add additional field into sms atoms for satellite service
isEmergency / OutgoingSms : To log whether outgoing sms is emergency or not
isNtn / Incoming/Outgoing Sms : To log whether incoming/ougoing sms is using satellite network or not.
Bug: 321671380
Test: atest persistAtomsStorageTest
Test: manual call/sms/mms test for regression
Test: manually send fake emergency number and checked whether is is set
as emergency or not
Change-Id: I7d2a5cc0ae5e9a0d099ec22ba9a6603629366066
Diffstat (limited to 'proto/src')
-rw-r--r-- | proto/src/persist_atoms.proto | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proto/src/persist_atoms.proto b/proto/src/persist_atoms.proto index c07c797d70..e54c969a7c 100644 --- a/proto/src/persist_atoms.proto +++ b/proto/src/persist_atoms.proto @@ -310,6 +310,7 @@ message IncomingSms { optional int64 message_id = 14; optional int32 count = 15; optional bool is_managed_profile = 16; + optional bool is_ntn = 17; // Internal use only optional int32 hashCode = 10001; @@ -334,6 +335,8 @@ message OutgoingSms { optional int32 send_error_code = 16; optional int32 network_error_code = 17; optional bool is_managed_profile = 18; + optional bool is_emergency = 19; + optional bool is_ntn = 20; // Internal use only optional int32 hashCode = 10001; |