Comments on individual members of struct gsm_abis_mo

Change-Id: I8e005410080201746906b8a60e9f7957031d2e58
This commit is contained in:
Harald Welte 2017-11-16 20:45:04 +01:00
parent 478f2f7696
commit 41d471351f
1 changed files with 7 additions and 0 deletions

View File

@ -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;
};