Change in pysim[master]: Move parsing of SMSP to generic Card class

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

herlesupreeth gerrit-no-reply at lists.osmocom.org
Mon Mar 30 08:52:42 UTC 2020


herlesupreeth has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/17658 )


Change subject: Move parsing of SMSP to generic Card class
......................................................................

Move parsing of SMSP to generic Card class

Change-Id: I911c5339a739fbdd9d41e61b63f2410c8358815b
---
M pySim-read.py
M pySim/cards.py
2 files changed, 8 insertions(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/58/17658/1

diff --git a/pySim-read.py b/pySim-read.py
index cd82498..a7e5d4c 100755
--- a/pySim-read.py
+++ b/pySim-read.py
@@ -133,7 +133,7 @@
 		print("GID2: Can't read file -- %s" % (str(e),))
 
 	# EF.SMSP
-	(res, sw) = scc.read_record(['3f00', '7f10', '6f42'], 1)
+	(res, sw) = card.read_smsp()
 	if sw == '9000':
 		print("SMSP: %s" % (res,))
 	else:
diff --git a/pySim/cards.py b/pySim/cards.py
index 495d3ee..e858270 100644
--- a/pySim/cards.py
+++ b/pySim/cards.py
@@ -115,6 +115,13 @@
 		data, sw = self._scc.update_binary(EF['PLMNsel'], hplmn + 'ff' * (size-3))
 		return sw
 
+	def read_smsp(self):
+		(res, sw) = self._scc.read_record(['3f00', '7f10', '6f42'], 1)
+		if sw == '9000':
+			return (res, sw)
+		else:
+			return (None, sw)
+
 	def update_smsp(self, smsp):
 		data, sw = self._scc.update_record(EF['SMSP'], 1, rpad(smsp, 84))
 		return sw

-- 
To view, visit https://gerrit.osmocom.org/c/pysim/+/17658
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: I911c5339a739fbdd9d41e61b63f2410c8358815b
Gerrit-Change-Number: 17658
Gerrit-PatchSet: 1
Gerrit-Owner: herlesupreeth <herlesupreeth at gmail.com>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200330/05a08e4b/attachment.htm>


More information about the gerrit-log mailing list