aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-11-16 20:45:04 +0100
committerHarald Welte <laforge@gnumonks.org>2017-12-02 21:05:34 +0100
commit41d471351fed3b2179af99bebacd4c68cb1ef7df (patch)
treeda160cc18a58a766ac6c903dc6b80d499e7f3f8a
parent478f2f7696d9646e274e62cc7da5b454ee711dc9 (diff)
Comments on individual members of struct gsm_abis_mo
-rw-r--r--include/osmo-bts/gsm_data_shared.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/osmo-bts/gsm_data_shared.h b/include/osmo-bts/gsm_data_shared.h
index c19b1255..4c0fe5c1 100644
--- a/include/osmo-bts/gsm_data_shared.h
+++ b/include/osmo-bts/gsm_data_shared.h
@@ -107,12 +107,19 @@ struct gsm_nm_state {
};
struct gsm_abis_mo {
+ /* A-bis OML Object Class */
uint8_t obj_class;
+ /* is there still some procedure pending? */
uint8_t procedure_pending;
+ /* A-bis OML Object Instance */
struct abis_om_obj_inst obj_inst;
+ /* human-readable name */
const char *name;
+ /* NM State */
struct gsm_nm_state nm_state;
+ /* Attributes configured in this MO */
struct tlv_parsed *nm_attr;
+ /* BTS to which this MO belongs */
struct gsm_bts *bts;
};