diff options
author | Max <msuraev@sysmocom.de> | 2018-11-29 19:30:07 +0100 |
---|---|---|
committer | Max <msuraev@sysmocom.de> | 2018-12-04 10:26:42 +0100 |
commit | 14f24c678f122576849eb400c8e64f7f4f403f3f (patch) | |
tree | 3e7574c183af4cc252ec3fa6fc5ebdce84bf6a46 | |
parent | d82070c3838f1d7290b3047e0287e3eac141adf1 (diff) |
LCLS: update osmo_lcls struct
* use pointer to proper struct type for GCR
* update comments to be useful for doxygen
Change-Id: I8ccfbd0c146e462e599e5305520cc89602364ec3
-rw-r--r-- | include/osmocom/gsm/gsm0808_utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osmocom/gsm/gsm0808_utils.h b/include/osmocom/gsm/gsm0808_utils.h index c5bf2803..097bd76b 100644 --- a/include/osmocom/gsm/gsm0808_utils.h +++ b/include/osmocom/gsm/gsm0808_utils.h @@ -60,10 +60,10 @@ struct gsm0808_cell_id_list2 { /*! LCLS-related parameters from 3GPP TS 48.008 */ struct osmo_lcls { - enum gsm0808_lcls_config config; /* §3.2.2.116 Configuration */ - enum gsm0808_lcls_control control; /* §3.2.2.117 Connection Status Control */ - struct gsm0808_gcr *gcr; /* §3.2.2.115 Global Call Reference */ - bool corr_needed; /* §3.2.2.118 Correlation-Not-Needed */ + enum gsm0808_lcls_config config; /**< §3.2.2.116 Configuration */ + enum gsm0808_lcls_control control; /**< §3.2.2.117 Connection Status Control */ + struct gsm29205_gcr *gcr; /**< §3.2.2.115 Global Call Reference */ + bool corr_needed; /**< §3.2.2.118 Correlation-Not-Needed */ }; extern const struct value_string gsm0808_cell_id_discr_names[]; |