1
0
Fork 0

gsm: Use a transaction identifier, verify that it is correct.

This commit is contained in:
Holger Hans Peter Freyther 2011-04-16 14:03:10 +02:00
parent fdd4437758
commit 67c1801031
1 changed files with 2 additions and 1 deletions

View File

@ -408,6 +408,7 @@ ProcedureBase subclass: USSDProcedure [
| reg |
reg := GSM48SSRegister new.
reg ti: 1.
reg facility data: (self class buildProcessUnstructReq: nr).
reg ssVersionOrDefault data: #(0).
@ -417,7 +418,7 @@ ProcedureBase subclass: USSDProcedure [
handleData: aMsg sapi: aSapi [
aMsg class messageType = GSM48SSMessage msgReleaseCompl ifTrue:[
aMsg inspect.
self success: true.
self success: aMsg ti = 9.
]
]
]