aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2023-01-24 17:47:08 +0100
committerHarald Welte <laforge@osmocom.org>2023-01-27 20:46:08 +0100
commit9ba68df3cc26311176823f92fdfd238f79099080 (patch)
tree661c5f47b6ec6d78fc40729579ea5349ca80f256
parent5b9472db7a034c1cc5edde4430e6c6d4f8cce296 (diff)
ts_51_011: Support EF.SDN
DF.TELECOM/EF.SDN (Service Dialling Numbers) is specified in section 10.5.9 of TS 51.011 and required by EIRENE for GSM-R. Let's use the pre-existing EF.ADN decoder to decode this file. Change-Id: If91332b10138096d465a9dccf90744de2c14b2be Related: OS#5784
-rw-r--r--pySim/ts_51_011.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pySim/ts_51_011.py b/pySim/ts_51_011.py
index a353101..de49e7a 100644
--- a/pySim/ts_51_011.py
+++ b/pySim/ts_51_011.py
@@ -490,7 +490,8 @@ class DF_TELECOM(CardDF):
EF_MSISDN(),
EF_SMSP(),
EF_SMSS(),
- # LND, SDN
+ # LND
+ EF_ADN('6f49', None, 'EF.SDN', 'Service Dialling Numbers'),
EF_EXT('6f4a', None, 'EF.EXT1', 'Extension1 (ADN/SSC)'),
EF_EXT('6f4b', None, 'EF.EXT2', 'Extension2 (FDN/SSC)'),
EF_EXT('6f4c', None, 'EF.EXT3', 'Extension3 (SDN)'),