smalltalk
/
osmo-st-msc
Archived
1
0
Fork 0

mo-call: Second part of the GSM48CCStatus handling

If we did something wrong, log it somewhere and close
the transaction.
This commit is contained in:
Holger Hans Peter Freyther 2011-06-29 14:25:19 +02:00
parent b8730c4fc7
commit 039cb8a337
1 changed files with 9 additions and 0 deletions

View File

@ -127,6 +127,15 @@ GSMTransaction subclass: GSMMOCall [
^ self logUnknown: aMsg.
]
moStatus: aMsg [
<category: 'mo-message'>
"We did something wrong, just give up and see how it can be fixed."
self logError: 'GSMOCall(srcref:%1) something wrong with call state.'
% {con srcRef} area: #bsc.
self cancel.
con removeTransaction: self.
]
dispatch: aMsg [
aMsg dispatchMoCall: self.
]