aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-12-15 21:36:59 +0100
committerHarald Welte <laforge@gnumonks.org>2009-12-15 21:36:59 +0100
commit7f2d25b0956f0e9fb6cdf0056d9371a00cc239e4 (patch)
tree9b13d8a1f1e72e1e95367fbf54b944d9796023ad /openbsc/include
parentd12b0fdf51b76f906d5ee5f5b7f266fe791eb800 (diff)
mroe comments on meas_rep data structures
Diffstat (limited to 'openbsc/include')
-rw-r--r--openbsc/include/openbsc/meas_rep.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/meas_rep.h b/openbsc/include/openbsc/meas_rep.h
index d44c9b766..c36352e2a 100644
--- a/openbsc/include/openbsc/meas_rep.h
+++ b/openbsc/include/openbsc/meas_rep.h
@@ -30,11 +30,15 @@ struct gsm_meas_rep_unidir {
/* parsed uplink and downlink measurement result */
struct gsm_meas_rep {
+ /* back-pointer to the logical channel */
struct gsm_lchan *lchan;
+ /* number of the measurement report */
u_int8_t nr;
+ /* flags, see MEAS_REP_F_* */
unsigned int flags;
+ /* uplink and downlink rxlev, rxqual; full and sub */
struct gsm_meas_rep_unidir ul;
struct gsm_meas_rep_unidir dl;
@@ -45,6 +49,7 @@ struct gsm_meas_rep {
u_int8_t ta; /* MS timing advance */
} ms_l1;
+ /* neighbor measurement reports for up to 6 cells */
int num_cell;
struct gsm_meas_rep_cell cell[6];
};