Add support for PCU version report

Expand 3GPP TS 52.021 §9.4.43 Probable Cause with Osmocom-specific value
for PCU version reporting to enable sending it via OML alarms.

Change-Id: If57459c0610f2c7b36d599b13087c8deef8bdd9e
Related: OS#1614
This commit is contained in:
Max 2017-03-15 12:02:22 +01:00
parent 5d994e4f75
commit 7f9c7e7b8b
2 changed files with 2 additions and 0 deletions

View File

@ -277,6 +277,7 @@ enum abis_mm_event_causes {
OSMO_EVT_WARN_SW_WARN = 0x0001,
/* External causes */
OSMO_EVT_EXT_ALARM = 0xfeed,
OSMO_EVT_PCU_VERS = 0xface,
};
extern const struct value_string abis_mm_event_cause_names[];

View File

@ -162,6 +162,7 @@ const struct value_string abis_mm_event_cause_names[] = {
{ OSMO_EVT_MIN_PAG_TAB_FULL, "Paging table full" },
{ OSMO_EVT_WARN_SW_WARN, "Software warning" },
{ OSMO_EVT_EXT_ALARM, "External alarm" },
{ OSMO_EVT_PCU_VERS, "PCU version report" },
{ 0, NULL }
};