diff options
author | Minh-Quang Nguyen <minh-quang.nguyen@nutaq.com> | 2017-02-06 11:13:31 -0500 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-07-14 16:04:59 +0200 |
commit | adc28dc7da17b510c5316b4157abf171a20e33c0 (patch) | |
tree | 46349126c9da7bf0fb08215fcf43f82ff2f9ed45 /include | |
parent | 2ff597e339b8f94aa2d7b3cf25a162198c6de4bc (diff) |
LC15: Add IPAC Directed Retry Enquiry data structure
Change-Id: I8d2746eefe1f22dba5b19636ebc9444e458fc802
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/gsm/protocol/gsm_08_58.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_08_58.h b/include/osmocom/gsm/protocol/gsm_08_58.h index f6451bbe..f0094a34 100644 --- a/include/osmocom/gsm/protocol/gsm_08_58.h +++ b/include/osmocom/gsm/protocol/gsm_08_58.h @@ -739,6 +739,12 @@ struct ipac_preproc_ncell_dflts { reserved_ms_txpwr_max_def:3; }__attribute__ ((packed)); +struct ipac_preproc_ho_ctl_param { + uint8_t sdcch_ho_gsm:1, + sdcch_ho_umts:1, + reserved:6; +}__attribute__ ((packed)); + struct ipac_preproc_cfg { uint8_t meas_rep_mode; uint32_t meas_mode_flags; @@ -747,6 +753,7 @@ struct ipac_preproc_cfg { struct ipac_preproc_ho_thresh ho_thresh; struct ipac_preproc_ho_comp ho_comp; struct ipac_preproc_ncell_dflts ncell_dflts; + struct ipac_preproc_ho_ctl_param ho_ctl_param; }; /*! @} */ |