Add GMM error cause present in osmo-hlr's gsm48_gmm_cause_vty_names

Change-Id: I77336cb2c76a516ecea5b46500da91fd4230176d
changes/58/34258/1
Pau Espin 2023-08-30 16:27:42 +02:00
parent 3ae6192d13
commit 5e11d28cd6
1 changed files with 9 additions and 3 deletions

View File

@ -165,11 +165,17 @@ gsup_pdp2dia_apn(GsupPdpInfo) ->
% 10.5.5.14
-define(GMM_CAUSE_IMSI_UNKNOWN, 16#02).
-define(GMM_CAUSE_PLMN_NOTALLOWED, 16#0b).
-define(GMM_CAUSE_ILLEGAL_MS, 16#03).
-define(GMM_CAUSE_GPRS_NOTALLOWED, 16#07).
-define(GMM_CAUSE_INV_MAND_INFO, 16#60).
-define(GMM_CAUSE_PLMN_NOTALLOWED, 16#0b).
-define(GMM_CAUSE_LA_NOTALLOWED, 16#0c).
-define(GMM_CAUSE_ROAMING_NOTALLOWED, 16#0d).
-define(GMM_CAUSE_NO_SUIT_CELL_IN_LA, 16#0f).
-define(GMM_CAUSE_NET_FAIL, 16#11).
% TODO: more values
-define(GMM_CAUSE_CONGESTION, 16#16).
-define(GMM_CAUSE_GSM_AUTH_UNACCEPT, 16#17).
-define(GMM_CAUSE_INV_MAND_INFO, 16#60).
-define(GMM_CAUSE_PROTO_ERR_UNSPEC, 16#6f).
-define(EXP_RES(Foo), #'Experimental-Result'{'Vendor-Id'=fixme, 'Experimental-Result-Code'=Foo}).