summaryrefslogtreecommitdiffstats
path: root/include/osmocom/gsm/mncc.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-05-24 12:19:45 +0200
committerHarald Welte <laforge@gnumonks.org>2018-05-24 12:19:45 +0200
commitdfd85137cf18243240d5f3c4300ca5b33f26e362 (patch)
treeb2a26a8bb8cfdd5947121fe1649bc50089b6af73 /include/osmocom/gsm/mncc.h
parentdab4db0217898007496ef9639a6d3f33d6c3873a (diff)
mncc: properly export osmo_mncc_name()
For some strange reason, the osmo_mncc_name() inline function was not in the mncc.h header, but in the mncc.c file. Let's fix that. Change-Id: I2c3666510c981dffa4ba25bed517fd7ebd1250f5
Diffstat (limited to 'include/osmocom/gsm/mncc.h')
-rw-r--r--include/osmocom/gsm/mncc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/osmocom/gsm/mncc.h b/include/osmocom/gsm/mncc.h
index 5ca29863..6b94d469 100644
--- a/include/osmocom/gsm/mncc.h
+++ b/include/osmocom/gsm/mncc.h
@@ -91,3 +91,8 @@ void _osmo_mncc_log(int subsys, int level, const char *file, int line, const cha
#define osmo_mncc_log(ss, level, prefix, msg, len) \
_osmo_mncc_log(ss, level, __BASE_FILE__, __LINE__, prefix, msg, len);
+
+extern const struct value_string osmo_mncc_names[];
+static inline const char *osmo_mncc_name(uint32_t msg_type) {
+ return get_value_string(osmo_mncc_names, msg_type);
+}