summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-04-19 14:57:53 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-04-19 14:57:53 +0200
commita3fc28999fdf5067ee560296e78ae3a695990773 (patch)
tree95498cb34e4727c02136a9565d07da74b0cb5ea6
parent78e32dfe14f1fc2beca6c42804cb135d8997fe27 (diff)
rsl: Add setters for the failure messages
-rw-r--r--fakebts/RSLMsg.st8
1 files changed, 8 insertions, 0 deletions
diff --git a/fakebts/RSLMsg.st b/fakebts/RSLMsg.st
index 5710f52..f50c690 100644
--- a/fakebts/RSLMsg.st
+++ b/fakebts/RSLMsg.st
@@ -1030,6 +1030,10 @@ RSLDedicatedChannelManagement subclass: RSLConnectionFailure [
<comment: 'I represent a GSM 08.58 GSM 8.4.4 CONNECTION FAILURE INDICATION'>
<rslMessageType: #messageDedConnectionFailure>
<rslMessageDefinition: #connectionFailureMessage>
+
+ cause: aCause [
+ cause := aCause
+ ]
]
RSLDedicatedChannelManagement subclass: RSLSacchDeactivate [
@@ -1158,6 +1162,10 @@ RSLRadioLinkManagement subclass: RSLErrorIndication [
RSLErrorIndication class >> isTransparent [
^1
]
+
+ rlmCause: aCause [
+ rlm_cause := aCause
+ ]
]
RSLRadioLinkManagement subclass: RSLEstablishRequest [