From 07352fee098758431ae1434c47c054d94887a6d4 Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 2 Jan 2017 19:05:25 +0100 Subject: Add event cause string descriptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add human-readable descriptions to event causes from 3GPP TS 12.21 ยง 9.4.43. Change-Id: Id173c978616c98b7831fbafb5401064257f1cf73 Related: OS#1615 --- src/gsm/abis_nm.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/gsm/abis_nm.c') diff --git a/src/gsm/abis_nm.c b/src/gsm/abis_nm.c index c085e069..87d05ab0 100644 --- a/src/gsm/abis_nm.c +++ b/src/gsm/abis_nm.c @@ -149,6 +149,21 @@ const char *abis_nm_nack_name(uint8_t nack) return get_value_string(nack_names, nack); } +/* Section 9.4.43: Manufacturer specific values */ +const struct value_string abis_mm_event_cause_names[] = { + { OSMO_EVT_CRIT_SW_FATAL, "Fatal software error" }, + { OSMO_EVT_CRIT_PROC_STOP, "Process stopped" }, + { OSMO_EVT_CRIT_RTP_TOUT, "RTP error" }, + { OSMO_EVT_CRIT_BOOT_FAIL, "Boot failure" }, + { OSMO_EVT_MAJ_UKWN_MSG, "Unknown message" }, + { OSMO_EVT_MAJ_RSL_FAIL, "RSL failure" }, + { OSMO_EVT_MAJ_UNSUP_ATTR, "Unsupported attribute" }, + { OSMO_EVT_MAJ_NET_CONGEST, "Network congestion" }, + { OSMO_EVT_MIN_PAG_TAB_FULL, "Paging table full" }, + { OSMO_EVT_WARN_SW_WARN, "Software warning" }, + { 0, NULL } +}; + /* Chapter 9.4.36 */ static const struct value_string nack_cause_names[] = { /* General Nack Causes */ -- cgit v1.2.3