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

gsm: Add handover failure without a roundtrip test

I am missing the test data right.
This commit is contained in:
Holger Hans Peter Freyther 2012-12-25 10:19:52 +01:00
parent 2f54032570
commit 11efcf94bb
1 changed files with 17 additions and 0 deletions

View File

@ -2777,6 +2777,22 @@ GSM48RRMessage subclass: GSM48RRHandoverComplete [
]
]
GSM48RRMessage subclass: GSM48RRHandoverFailure [
<category: 'OsmoGSM'>
<comment: 'See table 9.17'>
GSM48RRHandoverFailure class >> messageType [
<category: 'factory'>
^ self msgHandoverFailure
]
GSM48RRHandoverFailure class >> tlvDescription [
^ OrderedCollection new
add: GSM48Cause asTLVDescription;
yourself
]
]
GSM48RRMessage subclass: GSM48RRImmediateAssignCommand [
<category: 'OsmoGSM'>
<comment: 'I represent a GSM 04.08 9.1.18 Immediate assignment'>
@ -2963,6 +2979,7 @@ Eval [
GSM48RRAssignmentComplete initialize.
GSM48RRHandoverCommand initialize.
GSM48RRHandoverComplete initialize.
GSM48RRHandoverFailure initialize.
GSM48RRImmediateAssignCommand initialize.
GSM48RRChannelRelease initialize.
GSM48RRClassmarkChange initialize.