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

gsm: Add the messgae types for the two TMSI operations

This commit is contained in:
Holger Hans Peter Freyther 2012-10-26 21:10:32 +02:00
parent 396233cc54
commit d184d13546
2 changed files with 4 additions and 2 deletions

View File

@ -1800,6 +1800,8 @@ GSM48MSG subclass: GSM48MMMessage [
GSM48MMMessage class >> msgCMReject [ ^ 16r22 ]
GSM48MMMessage class >> msgCMReq [ ^ 16r24 ]
GSM48MMMessage class >> msgIMSIDetach [ ^ 16r01 ]
GSM48MMMessage class >> msgTMSIReallocationCommand [ ^ 2r11010 ]
GSM48MMMessage class >> msgTMSIReallocationComplete [ ^ 2r11011 ]
]
GSM48MSG subclass: GSM48CCMessage [

View File

@ -389,8 +389,8 @@ TestCase subclass: GSM48Test [
testTMSI [
"smoke test"
GSM48TMSIReallocationCommand new.
GSM48TMSIReallocationComplete new.
GSM48TMSIReallocationCommand new toMessage.
GSM48TMSIReallocationComplete new toMessage
]
]