1
0
Fork 0

gsmdriver: Send a Classmark Change after the connection is confirmed

This commit is contained in:
Holger Hans Peter Freyther 2012-10-21 15:50:20 +02:00
parent 345438106d
commit 27b2de5c76
1 changed files with 10 additions and 0 deletions

View File

@ -192,6 +192,10 @@ classes.'>
each serviceAccepted.
].
]
onConnectionConfirmed [
mainProc connectionConfirmed.
]
]
Object subclass: ProcedureBase [
@ -240,6 +244,12 @@ Object subclass: ProcedureBase [
"I should return the initial message of the transaction"
self subclassResponsibility
]
connectionConfirmed [
| cm |
cm := GSM48RRClassmarkChange new.
conn nextPutData: (BSSAPDTAP initWith: cm linkIdentifier: 0).
]
]