aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/gprs
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@espeweb.net>2020-12-14 17:04:54 +0100
committerpespin <pespin@sysmocom.de>2020-12-17 15:22:09 +0000
commit946bb95af1838fcf026587c51a6ad36e34e202c3 (patch)
tree44287309f2c9ccf6505a757d8b898d84b86353e9 /include/osmocom/gprs
parentbd10c21cc4cf439e6137fe1c3c9f7321b21526a3 (diff)
GPRS Cell Options (SI13): Add REL-4 CCN_ACTIVE bit
This is required in order to tell MS that osmo-pcu now supports Network Assisted Cell Change (NACC). Related: SYS#4909 Change-Id: I2aaa8c1107c977f711c2d7530034f57e36e3a237
Diffstat (limited to 'include/osmocom/gprs')
-rw-r--r--include/osmocom/gprs/protocol/gsm_04_60.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/osmocom/gprs/protocol/gsm_04_60.h b/include/osmocom/gprs/protocol/gsm_04_60.h
index 05728f49..ed63fe00 100644
--- a/include/osmocom/gprs/protocol/gsm_04_60.h
+++ b/include/osmocom/gprs/protocol/gsm_04_60.h
@@ -167,7 +167,7 @@ enum osmo_gprs_nmo {
GPRS_NMO_III = 2, /* no paging coordination */
};
-/* TS 04.60 12.24 */
+/* TS 44.060 12.24 */
struct osmo_gprs_cell_options {
enum osmo_gprs_nmo nmo;
/* T3168: wait for packet uplink assignment message */
@@ -187,6 +187,7 @@ struct osmo_gprs_cell_options {
uint8_t pfc_supported;
uint8_t dtm_supported;
uint8_t bss_paging_coordination;
+ bool ccn_active;
} ext_info;
};