From 2f540325708555f6fd087886848f5fb245368d65 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 25 Dec 2012 10:17:32 +0100 Subject: [PATCH] gsm: Add handover complete message without a testcase I don't have test data right now. --- GSM48.st | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/GSM48.st b/GSM48.st index 046ac51..a0284a3 100644 --- a/GSM48.st +++ b/GSM48.st @@ -2759,6 +2759,24 @@ GSM48RRMessage subclass: GSM48RRHandoverCommand [ ] ] +GSM48RRMessage subclass: GSM48RRHandoverComplete [ + + + + GSM48RRHandoverComplete class >> messageType [ + + ^ self msgHandoverComplete + ] + + GSM48RRHandoverComplete class >> tlvDescription [ + + ^ OrderedCollection new + add: GSM48Cause asTLVDescription; + add: (GSM48TimingDifference asTLVDescription beOptional; yourself); + yourself + ] +] + GSM48RRMessage subclass: GSM48RRImmediateAssignCommand [ @@ -2944,6 +2962,7 @@ Eval [ GSM48RRAssignmentComplete initialize. GSM48RRHandoverCommand initialize. + GSM48RRHandoverComplete initialize. GSM48RRImmediateAssignCommand initialize. GSM48RRChannelRelease initialize. GSM48RRClassmarkChange initialize.