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

Commit 9d086b44 authored by Aishwarya Mallampati's avatar Aishwarya Mallampati
Browse files

Add new datagram type sms

Bug: 350514607
Test: make
FLAG: EXEMPT bugfix

Change-Id: Ice1982453347478c778cf0dd9e1abc091675d05a
parent b210fcdf
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -1035,6 +1035,11 @@ public final class SatelliteManager {
     * @hide
     */
    public static final int DATAGRAM_TYPE_LAST_SOS_MESSAGE_NO_HELP_NEEDED = 5;
    /**
     * Datagram type indicating that the message to be sent or received is of type SMS.
     * @hide
     */
    public static final int DATAGRAM_TYPE_SMS = 6;

    /** @hide */
    @IntDef(prefix = "DATAGRAM_TYPE_", value = {
@@ -1043,7 +1048,8 @@ public final class SatelliteManager {
            DATAGRAM_TYPE_LOCATION_SHARING,
            DATAGRAM_TYPE_KEEP_ALIVE,
            DATAGRAM_TYPE_LAST_SOS_MESSAGE_STILL_NEED_HELP,
            DATAGRAM_TYPE_LAST_SOS_MESSAGE_NO_HELP_NEEDED
            DATAGRAM_TYPE_LAST_SOS_MESSAGE_NO_HELP_NEEDED,
            DATAGRAM_TYPE_SMS
    })
    @Retention(RetentionPolicy.SOURCE)
    public @interface DatagramType {}