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

gsm: Introduce the GSM 04.08 CC Call Confirmed message

This commit is contained in:
Holger Hans Peter Freyther 2012-12-23 16:28:12 +01:00
parent ae635c5143
commit 83b0dd0e74
1 changed files with 20 additions and 0 deletions

View File

@ -2450,6 +2450,25 @@ GSM48CCMessage subclass: GSM48CCAlerting [
]
]
GSM48CCMessage subclass: GSM48CCCallConfirmed [
<category: 'OsmoGSM'>
GSM48CCCallConfirmed class >> messageType [
<category: 'factory'>
^ self msgConfirmed
]
GSM48CCCallConfirmed class >> tlvDescription [
<category: 'parsing'>
^ OrderedCollection new
add: (GSMRepeatInd asTLVDescription beOptional; yourself);
add: (GSMBearerCap asTLVDescription beOptional; instVarName: #bearer1; yourself);
add: (GSMBearerCap asTLVDescription beOptional; instVarName: #bearer2; yourself);
add: (GSM48Cause asTLVDescription beOptional; yourself);
add: (GSMCCCapabilities asTLVDescription beOptional; yourself);
yourself
]
]
GSM48CCMessage subclass: GSM48CCConnect [
<category: 'OsmoGSM'>
@ -2745,6 +2764,7 @@ Eval [
GSM48MMInformation initialize.
GSM48CCSetup initialize.
GSM48CCCallConfirmed initialize.
GSM48CCProceeding initialize.
GSM48CCAlerting initialize.
GSM48CCConnect initialize.