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

gsm: Create the RR paging response

This commit is contained in:
Holger Hans Peter Freyther 2012-12-03 17:29:25 +01:00
parent b386ac7d9d
commit 3b75b7806f
1 changed files with 19 additions and 0 deletions

View File

@ -2510,6 +2510,24 @@ GSM48RRMessage subclass: GSM48RRClassmarkChange [
]
]
GSM48RRMessage subclass: GSM48RRPagingResponse [
<category: 'OsmoGSM'>
GSM48RRPagingResponse class >> messageType [
<category: 'factory'>
^ self msgPagingResponse
]
GSM48RRPagingResponse class >> tlvDescription [
<category: 'parsing'>
^ OrderedCollection new
add: GSM48KeySeqLuType asTLVDescription;
add: GSM48Classmark2 asTLVDescription;
add: GSM48MIdentity asTLVDescription;
yourself.
]
]
GSM48SSMessage subclass: GSM48SSFacility [
<category: 'OsmoGSM'>
@ -2580,6 +2598,7 @@ Eval [
GSM48RRImmediateAssignCommand initialize.
GSM48RRChannelRelease initialize.
GSM48RRClassmarkChange initialize.
GSM48RRPagingResponse initialize.
GSM48SSFacility initialize.
GSM48SSRegister initialize.