aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GSMDriver.st8
1 files changed, 5 insertions, 3 deletions
diff --git a/GSMDriver.st b/GSMDriver.st
index eda967f..3fa825b 100644
--- a/GSMDriver.st
+++ b/GSMDriver.st
@@ -105,7 +105,7 @@ classes.'>
<category: 'protected'>
]
- dispatchMan: aMsg [
+ dispatchBSSAP: aMsg [
<category: 'private'>
aMsg type = GSM0808Helper msgClear ifTrue: [
| resp |
@@ -153,7 +153,9 @@ classes.'>
aMsg class messageType = GSM48MMMessage msgAuReq ifTrue: [
| auth resp |
'Authentication....' printNl.
- auth := A3A8 COMP128: phoneConfig auVer ki: self auKey rand: aMsg auth data.
+ auth := A3A8 COMP128: phoneConfig auVer
+ ki: self auKey
+ rand: aMsg auth data.
resp := GSM48AuthResp new.
resp sres data: (auth copyFrom: 1 to: 4).
@@ -180,7 +182,7 @@ classes.'>
<category: 'protected'>
aMsg class msgType = BSSAPHelper msgManagemnt
ifTrue: [
- self dispatchMan: aMsg data.
+ self dispatchBSSAP: aMsg data.
]
ifFalse: [
self dispatchDTAP: aMsg data sapi: aMsg sapi.