From b538ae24c85a3061bcc4bde63c7fe4fef518d474 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Tue, 8 Jan 2013 14:26:32 +0100 Subject: [PATCH] bssmap: Add the cell identification for the cell identifier list --- BSSMAP.st | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/BSSMAP.st b/BSSMAP.st index 0843b05..2b8b134 100644 --- a/BSSMAP.st +++ b/BSSMAP.st @@ -351,6 +351,69 @@ GSM0808IE subclass: GSM0808CellIdentifierList [ + GSM0808CellIdentifierList class [ + cellWholeGlobal [ + + "The whole Cell Global Identification, CGI, is used to identify the cells." + ^ 2r0000 + ] + + cellLocationAreaCodeCi [ + + "Location Area Code, LAC, and Cell Identify, CI, is used to identify the cells." + ^ 2r0001 + ] + + cellCi [ + + "Cell Identity, CI, is used to identify the cells." + ^ 2r0010 + ] + + cellNoCell [ + + "No cell is associated with the transaction." + ^ 2r0011 + ] + + cellLocationAreaIdentification [ + + "Location Area Identification, LAI, is used to identify all cells within a Location Area." + ^ 2r0100 + ] + + cellLocationAreaCode [ + + "Location Area Code, LAC, is used to identify all cells within a location area." + ^ 2r0101 + ] + + cellAllCells [ + + "All cells on the BSS are identified." + ^ 2r0110 + ] + + cellUtranHandoverPlmnLacRnc [ + + "Intersystem Handover to UTRAN or cdma2000. PLMN-ID, LAC, and RNC-ID, are encoded to identify the target RNC." + ^ 2r1000 + ] + + cellUtranHandoverRnc [ + + "Intersystem Handover to UTRAN or cdma2000. The RNC-ID is coded to identify the target RNC." + ^ 2r1001 + ] + + cellUtranHanoverLacRnc [ + + "Intersystem Handover to UTRAN or cdma2000. LAC and RNC-ID are encoded to identify the target RNC." + ^ 2r1010 + ] + ] + + GSM0808CellIdentifierList class >> elementId [ ^ 26 ] GSM0808CellIdentifierList class >> parseFrom: aStream [ | len ident cells |