aboutsummaryrefslogtreecommitdiff
path: root/include/ModemManager-enums.h
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-01-22 12:55:00 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:56 +0100
commit59e903820d21dc041443ebb05348ee305d269429 (patch)
treed044e846da17840a5747680a8cc132f8353f62bb /include/ModemManager-enums.h
parent65455558bef9dd885805f650a2afea149aedf546 (diff)
api,header: new MM_ACCESS_TECHNOLOGY_ANY
Helps as a mask covering all the available access technologies.
Diffstat (limited to 'include/ModemManager-enums.h')
-rw-r--r--include/ModemManager-enums.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ModemManager-enums.h b/include/ModemManager-enums.h
index a4be5db7..4ad2e9b9 100644
--- a/include/ModemManager-enums.h
+++ b/include/ModemManager-enums.h
@@ -150,6 +150,7 @@ typedef enum { /*< underscore_name=mm_modem_state_change_reason >*/
* @MM_MODEM_ACCESS_TECHNOLOGY_EVDOA: CDMA2000 EVDO revision A.
* @MM_MODEM_ACCESS_TECHNOLOGY_EVDOB: CDMA2000 EVDO revision B.
* @MM_MODEM_ACCESS_TECHNOLOGY_LTE: LTE (ETSI 27.007: "E-UTRAN")
+ * @MM_MODEM_ACCESS_TECHNOLOGY_ANY: Mask specifying all access technologies.
*
* Describes various access technologies that a device uses when registered with
* or connected to a network.
@@ -171,6 +172,7 @@ typedef enum { /*< underscore_name=mm_modem_access_technology >*/
MM_MODEM_ACCESS_TECHNOLOGY_EVDOA = 1 << 12,
MM_MODEM_ACCESS_TECHNOLOGY_EVDOB = 1 << 13,
MM_MODEM_ACCESS_TECHNOLOGY_LTE = 1 << 14,
+ MM_MODEM_ACCESS_TECHNOLOGY_ANY = 0xFFFFFFFF,
} MMModemAccessTechnology;
/**