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

gsm: Add handover complete message without a testcase

I don't have test data right now.
This commit is contained in:
Holger Hans Peter Freyther 2012-12-25 10:17:32 +01:00
parent 6cdfbc77fb
commit 2f54032570
1 changed files with 19 additions and 0 deletions

View File

@ -2759,6 +2759,24 @@ GSM48RRMessage subclass: GSM48RRHandoverCommand [
]
]
GSM48RRMessage subclass: GSM48RRHandoverComplete [
<category: 'OsmoGSM'>
<comment: 'See table 9.16 for details'>
GSM48RRHandoverComplete class >> messageType [
<category: 'factory'>
^ self msgHandoverComplete
]
GSM48RRHandoverComplete class >> tlvDescription [
<category: 'parsing'>
^ OrderedCollection new
add: GSM48Cause asTLVDescription;
add: (GSM48TimingDifference asTLVDescription beOptional; yourself);
yourself
]
]
GSM48RRMessage subclass: GSM48RRImmediateAssignCommand [
<category: 'OsmoGSM'>
<comment: 'I represent a GSM 04.08 9.1.18 Immediate assignment'>
@ -2944,6 +2962,7 @@ Eval [
GSM48RRAssignmentComplete initialize.
GSM48RRHandoverCommand initialize.
GSM48RRHandoverComplete initialize.
GSM48RRImmediateAssignCommand initialize.
GSM48RRChannelRelease initialize.
GSM48RRClassmarkChange initialize.