Hoernchen has uploaded this change for review.

View Change

osmo-smdpp: case insensitive comp of ES9+ SM-DP+ address

Do what the comment above the line already says..

Change-Id: Ie0738e810572ea3312c885ec8aaa2da4b8b12cd7
---
M osmo-smdpp.py
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/62/43562/1
diff --git a/osmo-smdpp.py b/osmo-smdpp.py
index ef214a9..5ac08df 100755
--- a/osmo-smdpp.py
+++ b/osmo-smdpp.py
@@ -525,7 +525,7 @@
"""See ES9+ InitiateAuthentication SGP.22 Section 5.6.1"""
# Verify that the received address matches its own SM-DP+ address, where the comparison SHALL be
# case-insensitive. Otherwise, the SM-DP+ SHALL return a status code "SM-DP+ Address - Refused".
- if content['smdpAddress'] != self.server_hostname:
+ if content['smdpAddress'].lower() != self.server_hostname.lower():
raise ApiError('8.8.1', '3.8', 'Invalid SM-DP+ Address')

euiccChallenge = b64decode(content['euiccChallenge'])

To view, visit change 43562. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: Ie0738e810572ea3312c885ec8aaa2da4b8b12cd7
Gerrit-Change-Number: 43562
Gerrit-PatchSet: 1
Gerrit-Owner: Hoernchen <ewild@sysmocom.de>