summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2013-07-18 13:11:19 +0200
committerAleksander Morgado <aleksander@lanedo.com>2013-10-25 19:36:14 +0200
commit1ebbd16f98cb8f88ab0cf910c3d225de3b427f9f (patch)
tree9235168f8d5c59977fb1cf4f19107976098867ab /include
parentc37f94ffd02a6a77151c33bed78b09c1cee0ee5e (diff)
downloadModemManager-1ebbd16f98cb8f88ab0cf910c3d225de3b427f9f.tar.gz
api,header: added new CDMA-specific 'MMSmsPduType' enumeration values
Diffstat (limited to 'include')
-rw-r--r--include/ModemManager-enums.h22
1 files changed, 17 insertions, 5 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h
index 95d359fe5..0c3be2799 100644
--- a/include/ModemManager-enums.h
+++ b/include/ModemManager-enums.h
@@ -419,17 +419,29 @@ typedef enum { /*< underscore_name=mm_modem_port_type >*/
/**
* MMSmsPduType:
* @MM_SMS_PDU_TYPE_UNKNOWN: Unknown type.
- * @MM_SMS_PDU_TYPE_DELIVER: SMS has been received from the SMSC.
- * @MM_SMS_PDU_TYPE_SUBMIT: SMS is sent, or to be sent to the SMSC.
- * @MM_SMS_PDU_TYPE_STATUS_REPORT: SMS is a status report received from the SMSC.
+ * @MM_SMS_PDU_TYPE_DELIVER: 3GPP Mobile-Terminated (MT) message.
+ * @MM_SMS_PDU_TYPE_SUBMIT: 3GPP Mobile-Originated (MO) message.
+ * @MM_SMS_PDU_TYPE_STATUS_REPORT: 3GPP status report (MT).
+ * @MM_SMS_PDU_TYPE_CDMA_DELIVER: 3GPP2 Mobile-Terminated (MT) message.
+ * @MM_SMS_PDU_TYPE_CDMA_SUBMIT: 3GPP2 Mobile-Originated (MO) message.
+ * @MM_SMS_PDU_TYPE_CDMA_CANCELLATION: 3GPP2 Cancellation (MO) message.
+ * @MM_SMS_PDU_TYPE_CDMA_DELIVERY_ACKNOWLEDGEMENT: 3GPP2 Delivery Acknowledgement (MT) message.
+ * @MM_SMS_PDU_TYPE_CDMA_USER_ACKNOWLEDGEMENT: 3GPP2 User Acknowledgement (MT or MO) message.
+ * @MM_SMS_PDU_TYPE_CDMA_READ_ACKNOWLEDGEMENT: 3GPP2 Read Acknowledgement (MT or MO) message.
*
* Type of PDUs used in the SMS.
*/
typedef enum { /*< underscore_name=mm_sms_pdu_type >*/
- MM_SMS_PDU_TYPE_UNKNOWN = 0,
+ MM_SMS_PDU_TYPE_UNKNOWN = 0,
MM_SMS_PDU_TYPE_DELIVER = 1,
MM_SMS_PDU_TYPE_SUBMIT = 2,
- MM_SMS_PDU_TYPE_STATUS_REPORT = 3
+ MM_SMS_PDU_TYPE_STATUS_REPORT = 3,
+ MM_SMS_PDU_TYPE_CDMA_DELIVER = 32,
+ MM_SMS_PDU_TYPE_CDMA_SUBMIT = 33,
+ MM_SMS_PDU_TYPE_CDMA_CANCELLATION = 34,
+ MM_SMS_PDU_TYPE_CDMA_DELIVERY_ACKNOWLEDGEMENT = 35,
+ MM_SMS_PDU_TYPE_CDMA_USER_ACKNOWLEDGEMENT = 36,
+ MM_SMS_PDU_TYPE_CDMA_READ_ACKNOWLEDGEMENT = 37,
} MMSmsPduType;
/**