aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-01-08 14:26:32 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-01-08 14:26:59 +0100
commitb538ae24c85a3061bcc4bde63c7fe4fef518d474 (patch)
treedd7fcf3b16780962e279d2d2f3614abd87d264cc
parentf3b27888deebb0d39ec1d4fa3195bd01f1192c8f (diff)
bssmap: Add the cell identification for the cell identifier list
-rw-r--r--BSSMAP.st63
1 files changed, 63 insertions, 0 deletions
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 [
<category: 'OsmoGSM'>
<comment: 'I represent a 3.2.2.27 of GSM 08.08'>
+ GSM0808CellIdentifierList class [
+ cellWholeGlobal [
+ <category: 'types'>
+ "The whole Cell Global Identification, CGI, is used to identify the cells."
+ ^ 2r0000
+ ]
+
+ cellLocationAreaCodeCi [
+ <category: 'types'>
+ "Location Area Code, LAC, and Cell Identify, CI, is used to identify the cells."
+ ^ 2r0001
+ ]
+
+ cellCi [
+ <category: 'types'>
+ "Cell Identity, CI, is used to identify the cells."
+ ^ 2r0010
+ ]
+
+ cellNoCell [
+ <category: 'types'>
+ "No cell is associated with the transaction."
+ ^ 2r0011
+ ]
+
+ cellLocationAreaIdentification [
+ <category: 'types'>
+ "Location Area Identification, LAI, is used to identify all cells within a Location Area."
+ ^ 2r0100
+ ]
+
+ cellLocationAreaCode [
+ <category: 'types'>
+ "Location Area Code, LAC, is used to identify all cells within a location area."
+ ^ 2r0101
+ ]
+
+ cellAllCells [
+ <category: 'types'>
+ "All cells on the BSS are identified."
+ ^ 2r0110
+ ]
+
+ cellUtranHandoverPlmnLacRnc [
+ <category: 'types'>
+ "Intersystem Handover to UTRAN or cdma2000. PLMN-ID, LAC, and RNC-ID, are encoded to identify the target RNC."
+ ^ 2r1000
+ ]
+
+ cellUtranHandoverRnc [
+ <category: 'types'>
+ "Intersystem Handover to UTRAN or cdma2000. The RNC-ID is coded to identify the target RNC."
+ ^ 2r1001
+ ]
+
+ cellUtranHanoverLacRnc [
+ <category: 'types'>
+ "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 |