Add event cause string descriptions

Add human-readable descriptions to event causes from 3GPP TS 12.21 §
9.4.43.

Change-Id: Id173c978616c98b7831fbafb5401064257f1cf73
Related: OS#1615
This commit is contained in:
Max 2017-01-02 19:05:25 +01:00
parent 848de8f1df
commit 07352fee09
3 changed files with 18 additions and 0 deletions

View File

@ -274,6 +274,8 @@ enum abis_mm_event_causes {
OSMO_EVT_WARN_SW_WARN = 0x0001,
};
extern const struct value_string abis_mm_event_cause_names[];
enum abis_nm_bs11_cell_alloc {
NM_BS11_CANR_GSM = 0x00,
NM_BS11_CANR_DCS1800 = 0x01,

View File

@ -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 */

View File

@ -25,6 +25,7 @@ abis_nm_sw_load_msgs;
abis_nm_test_name;
abis_nm_osmo_magic;
abis_nm_ipa_magic;
abis_nm_event_cause_names;
osmo_sitype_strs;
osmo_c4;