From 6940d34ee54761648af303aa93c55bae15a68938 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Mon, 15 Feb 2021 16:39:04 +0100 Subject: l1sap: Store status of SRR in an lchan struct memeber The MS sets the SRR bit in the L1 SACCH header to request DL-SACCH repetition from the BTS. At the moment we access the l1_info stored in tle lchan struct each time we want to check the status of the SRR bit. However, it is more convinient to do this once at reception and store the status of the status of the flag in a separate struct member. Change-Id: Ieddd45d7890343d64db14b9c726f6fa2f25714f6 Related: SYS#5114 --- include/osmo-bts/gsm_data.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/osmo-bts/gsm_data.h') diff --git a/include/osmo-bts/gsm_data.h b/include/osmo-bts/gsm_data.h index 6caad14c..ff0c89cb 100644 --- a/include/osmo-bts/gsm_data.h +++ b/include/osmo-bts/gsm_data.h @@ -406,6 +406,7 @@ struct gsm_lchan { struct abis_rsl_osmo_rep_acch_cap repeated_acch_capability; bool repeated_dl_facch_active; bool repeated_ul_sacch_active; + bool repeated_dl_sacch_active; /* Message buffer to store DL-SACCH repeation candidate */ struct msgb *rep_sacch; -- cgit v1.2.3