GSM A-bis/OML: Fix ipaccess specific GPRS NSVC obj class

All NSVCs share the same object class, and the NSVCI is encoded in the
FOM Object Instance TRX byte.
This commit is contained in:
Pau Espin 2020-12-03 17:40:05 +01:00 committed by AndersBroman
parent 27acec97e9
commit d113dbfd18
1 changed files with 2 additions and 4 deletions

View File

@ -242,8 +242,7 @@ enum abis_nm_obj_class {
NM_OC_GPRS_NSE = 0xf0,
NM_OC_GPRS_CELL = 0xf1,
NM_OC_GPRS_NSVC0 = 0xf2,
NM_OC_GPRS_NSVC1 = 0xf3,
NM_OC_GPRS_NSVC = 0xf2,
NM_OC_NULL = 0xff
};
@ -948,8 +947,7 @@ static const value_string oml_fom_objclass_vals[] = {
{ NM_OC_GPRS_NSE, "GPRS NSE" },
{ NM_OC_GPRS_CELL, "GPRS Cell" },
{ NM_OC_GPRS_NSVC0, "GPRS NSVC0" },
{ NM_OC_GPRS_NSVC1, "GPRS NSVC1" },
{ NM_OC_GPRS_NSVC, "GPRS NSVC" },
{ NM_OC_NULL, "NULL" },
{ 0, NULL }