aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorIvan Klyuchnikov <kluchnikovi@gmail.com>2017-02-07 14:41:04 +0000
committerIvan Kluchnikov <kluchnikovi@gmail.com>2017-02-07 18:44:35 +0300
commitdf0aa54e9c2c33026219df76e2c18bd7e39e7798 (patch)
treeb875bd80778b4619f89f52eb9cbe8b4eb4634e02 /include
parent8c2d79b3c744a77d5eab8585ab95885f82a457e5 (diff)
gsup: Add support of map, sms, ussd_map message types in gsup protocol
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/gsm/gsup.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/osmocom/gsm/gsup.h b/include/osmocom/gsm/gsup.h
index e2912a64..0030d5a2 100644
--- a/include/osmocom/gsm/gsup.h
+++ b/include/osmocom/gsm/gsup.h
@@ -64,6 +64,10 @@ enum osmo_gsup_iei {
/*! GSUP message type */
enum osmo_gsup_message_type {
+ OSMO_GSUP_MSGT_MAP = 0b01111111,
+ OSMO_GSUP_MSGT_SMS = 0b01111110,
+ OSMO_GSUP_MSGT_USSD_MAP = 0b01111101,
+
OSMO_GSUP_MSGT_UPDATE_LOCATION_REQUEST = 0b00000100,
OSMO_GSUP_MSGT_UPDATE_LOCATION_ERROR = 0b00000101,
OSMO_GSUP_MSGT_UPDATE_LOCATION_RESULT = 0b00000110,