1
0
Fork 0

gsm: Rename selector to be more specific and correct

This commit is contained in:
Holger Hans Peter Freyther 2013-01-07 10:09:10 +01:00
parent ef7f792316
commit c83932dbe0
1 changed files with 5 additions and 3 deletions

View File

@ -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.