diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2019-01-05 00:39:13 +0100 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2019-01-08 14:07:07 +0000 |
commit | 92f3f5e4917d30dad45d26c2776299c625111529 (patch) | |
tree | 07a1a2f8b9e7056be184d83e02c2059bdffcc0d5 /include/osmocom | |
parent | 02fd83d79991665d59362f24d7a0ed263c6d91c0 (diff) |
add osmo_lu_type_names[], osmo_lu_type_name()
Move lupd_names[] from osmo-msc to libosmo-gsm.
Change-Id: Ica25919758ef6cba8348da199b0ae7e0ba628798
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/gsm/protocol/gsm_04_08.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_04_08.h b/include/osmocom/gsm/protocol/gsm_04_08.h index a97225c5..791fbd4e 100644 --- a/include/osmocom/gsm/protocol/gsm_04_08.h +++ b/include/osmocom/gsm/protocol/gsm_04_08.h @@ -1652,6 +1652,10 @@ const char *gsm48_pdisc_msgtype_name(uint8_t pdisc, uint8_t msg_type); #define GSM48_LUPD_IMSI_ATT 0x2 #define GSM48_LUPD_RESERVED 0x3 +extern const struct value_string osmo_lu_type_names[]; +static inline const char *osmo_lu_type_name(uint8_t lu_type) +{ return get_value_string(osmo_lu_type_names, lu_type); } + /* Table 10.5.4 */ #define GSM_MI_TYPE_MASK 0x07 #define GSM_MI_TYPE_NONE 0x00 |