diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2018-04-06 04:31:00 +0200 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2018-04-09 17:57:15 +0200 |
commit | aead241df0282344e068dbae4d4221dbad7a71d9 (patch) | |
tree | 0acaf85e570d44a4b068d6dca1266d63a7fe11af /include/osmocom | |
parent | a64c45a03e3b318b5fdc93c960670d89a5745271 (diff) |
add gsm48_reject_value_names
There seems to be quite some confusion / overlap between enum
gsm48_reject_value, gsm48_gsm_cause and gsm48_gmm_cause. I tried to go with
gsm48_gsm_cause_names[], but e.g. GSM48_REJECT_CONGESTION is not represented.
Instead of attempting to mix/merge those enums, provide a separate value string
array for enum gsm48_reject_value.
This will be used by osmo-msc's libvlr (refactoring of FSM result handling),
I27bf8d68737ff1f8dc6d11fb1eac3d391aab0cb1.
Change-Id: I6661f139e68a498fb1bef10c266c2f064b72774a
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 4a821cca..6a5fb3bb 100644 --- a/include/osmocom/gsm/protocol/gsm_04_08.h +++ b/include/osmocom/gsm/protocol/gsm_04_08.h @@ -1509,6 +1509,10 @@ enum gsm48_reject_value { GSM48_REJECT_MSC_TMP_NOT_REACHABLE = 16, }; +extern const struct value_string gsm48_reject_value_names[]; +static inline const char *gsm48_reject_value_name(enum gsm48_reject_value val) +{ return get_value_string(gsm48_reject_value_names, val); } + enum chreq_type { CHREQ_T_EMERG_CALL, CHREQ_T_CALL_REEST_TCH_F, |