smalltalk
/
osmo-st-gsm
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-gsm/BSSAP.st

25 lines
677 B
Smalltalk
Raw Normal View History

Object subclass: BSSAPHelper [
BSSAPHelper class >> msgManagemnt [ ^ 0 ]
BSSAPHelper class >> msgDtap [ ^ 1 ]
BSSAPHelper class >> prependManagement: aMsg [
"Prepent the BSSAP Management header"
| tmp |
tmp := OrderedCollection new.
tmp add: self msgManagemnt.
tmp add: aMsg size.
aMsg prependByteArray: tmp asByteArray.
]
BSSAPHelper class >> prependDTAP: aMsg dlci: sapi [
"Prepend the DTAP header"
| tmp |
tmp := OrderedCollection new.
tmp add: self msgDtap.
tmp add: sapi.
tmp add: aMsg size.
aMsg prependByteArray: tmp asByteArray.
]
]