mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-29 14:34:30 +03:00
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
This commit is contained in:
@@ -91,7 +91,7 @@ class EF_DOMAIN(TransparentEF):
|
|||||||
class domain(BER_TLV_IE, tag=0x80):
|
class domain(BER_TLV_IE, tag=0x80):
|
||||||
_construct = GreedyString("utf8")
|
_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)
|
super().__init__(fid=fid, sfid=sfid, name=name, desc=desc, **kwargs)
|
||||||
self._tlv = EF_DOMAIN.domain
|
self._tlv = EF_DOMAIN.domain
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user