aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/bsc
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-11-23 19:06:09 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2017-11-24 15:01:20 +0100
commite8dda5f296106ff6b79875cc24f25cf23e928c6b (patch)
treead8014b1ebacee8b194621c40dfc50fabd174ef3 /include/osmocom/bsc
parent91c76fd6565283d1043efecd06b88e86288be6fb (diff)
vty: Add cmd to configure 3g Early Classmark Sending
In state prior to this patch, "3G Early Classmark Sending Restriction" bit in SI3 rest octets was always set to H, which is a sane default as the policy to send the information is then controlled by "Early Classmark Sending Control" bit in the same octet. However, it seems Quortus SoftCore can have some issues decoding the option, so let's add a vty cmd to be able to disable it for those having any issues. Related: SYS#4021 Change-Id: Ic1afe071038a3bb5871d7ff40f665c8644f801ec
Diffstat (limited to 'include/osmocom/bsc')
-rw-r--r--include/osmocom/bsc/gsm_data_shared.h1
-rw-r--r--include/osmocom/bsc/rest_octets.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/bsc/gsm_data_shared.h b/include/osmocom/bsc/gsm_data_shared.h
index 240be1c7c..04669e2d0 100644
--- a/include/osmocom/bsc/gsm_data_shared.h
+++ b/include/osmocom/bsc/gsm_data_shared.h
@@ -885,6 +885,7 @@ struct gsm_bts {
} data;
} si_common;
bool early_classmark_allowed;
+ bool early_classmark_allowed_3g;
/* for testing only: Have an infinitely long radio link timeout */
bool infinite_radio_link_timeout;
diff --git a/include/osmocom/bsc/rest_octets.h b/include/osmocom/bsc/rest_octets.h
index 568505abc..876e0ab47 100644
--- a/include/osmocom/bsc/rest_octets.h
+++ b/include/osmocom/bsc/rest_octets.h
@@ -49,6 +49,7 @@ struct gsm48_si_ro_info {
} scheduling;
struct gsm48_si3_gprs_ind gprs_ind;
/* SI 3 specific */
+ bool early_cm_restrict_3g;
bool si2quater_indicator;
/* SI 4 specific */
struct gsm48_lsa_params lsa_params;