From b7f35ac1638a95d2e1e1ed89da83a6930939b9ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A6strid=20smith?= Date: Sat, 26 Mar 2022 19:59:54 -0700 Subject: [PATCH] ts_31_103: Correct file-id of EF.DOMAIN in ADF.ISIM While the short ID of this file is 05, the actual file-id is 6f03. Reference to TS 31.103 section 4.2.3. Change-Id: Idd572ab064ea38e74dffd583c27ea505b23214a2 --- pySim/ts_31_103.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/ts_31_103.py b/pySim/ts_31_103.py index fb164ef2..a4f79834 100644 --- a/pySim/ts_31_103.py +++ b/pySim/ts_31_103.py @@ -91,7 +91,7 @@ class EF_DOMAIN(TransparentEF): class domain(BER_TLV_IE, tag=0x80): _construct = GreedyString("utf8") - def __init__(self, fid='6f05', sfid=0x05, name='EF.DOMAIN', desc='Home Network Domain Name', **kwargs): + def __init__(self, fid='6f03', sfid=0x05, name='EF.DOMAIN', desc='Home Network Domain Name', **kwargs): super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs) self._tlv = EF_DOMAIN.domain