aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_rlcmac.h
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2012-07-06 07:40:08 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2012-07-06 07:40:08 +0200
commitb3c6f6c716d4495b0f664b4d0da1a4708fb1d0f2 (patch)
treed44abf4a6b1553cc5744e6163c27ff95a1275937 /src/gprs_rlcmac.h
parentd679009a2dbe88869d699060bac40139d79cbd23 (diff)
Receive cell informations via PCU socket interface
These informations provide RAI, timers, counters and other attributes to the BSSGP and RLC/MAC processes. The attributes are stored in gprs_rlcmac_bts global structure.
Diffstat (limited to 'src/gprs_rlcmac.h')
-rw-r--r--src/gprs_rlcmac.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/gprs_rlcmac.h b/src/gprs_rlcmac.h
index 8c69ed7c..686b70ec 100644
--- a/src/gprs_rlcmac.h
+++ b/src/gprs_rlcmac.h
@@ -56,8 +56,19 @@ struct gprs_rlcmac_trx {
};
struct gprs_rlcmac_bts {
- uint8_t cs; /* block length 1=CS-1, 2=CS-2, 3=CS-3, 4=CS-4 */
- uint16_t t3192_msec;
+ uint8_t cs1;
+ uint8_t cs2;
+ uint8_t cs3;
+ uint8_t cs4;
+ uint8_t initial_cs;
+ uint8_t t3142;
+ uint8_t t3169;
+ uint8_t t3191;
+ uint16_t t3193_msec;
+ uint8_t t3195;
+ uint8_t n3101;
+ uint8_t n3103;
+ uint8_t n3105;
struct gprs_rlcmac_trx trx[8];
};