1
0
Fork 0

bts: Dispatch the l3Info of the encryption command to the lchan

This commit is contained in:
Holger Hans Peter Freyther 2013-08-27 16:38:24 +02:00
parent c9dd990360
commit 5800d96fb2
2 changed files with 24 additions and 0 deletions

View File

@ -142,6 +142,20 @@ RSLSacchDeactivate extend [
]
]
RSLEncryptionCommand extend [
trxDispatchOn: aTrx with: lchan [
<category: '*-BTS-Core'>
lchan
dataRequest: self l3Information data
sapi: (self linkIdentifier data first bitAnd: 2r111).
]
trxDispatchOn: aTrx [
<category: '*-BTS-Core'>
self trxChannelDispatch: aTrx.
]
]
RSLModeModifyRequest extend [
trxDispatchOn: aTrx with: lchan [
| ack |

View File

@ -1022,6 +1022,16 @@ RSLDedicatedChannelManagement subclass: RSLEncryptionCommand [
<comment: 'I represent a GSM 08.58 GSM 8.4.6 ENCRyption CoMmaD'>
<rslMessageType: #messageDedEncryptionCommand>
<rslMessageDefinition: #encryptionCommandMessage>
l3Information [
<category: 'access'>
^ l3_info
]
linkIdentifier [
<category: 'access'>
^ link_id
]
]
RSLDedicatedChannelManagement subclass: RSLHandoverDetection [