osmith has submitted this change. ( https://gerrit.osmocom.org/c/libosmocore/+/41056?usp=email )
Change subject: gsm_04_08: add GSM48_BCAP_RRQ_SPARE_NETWORK_TO_MS ......................................................................
gsm_04_08: add GSM48_BCAP_RRQ_SPARE_NETWORK_TO_MS
From network to MS, we must send spare bits that are encoded the same as GSM48_BCAP_RRQ_FR_ONLY. Add a define, so it is obvious that those are spare bits.
Related: OS#6657 Related: osmo-msc I7046e9244fd9d4301ee2c4df1147a619f753739c Change-Id: I97101c977104eae82e4850d40f9abd15aa03e33e --- M include/osmocom/gsm/protocol/gsm_04_08.h 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve pespin: Looks good to me, approved
diff --git a/include/osmocom/gsm/protocol/gsm_04_08.h b/include/osmocom/gsm/protocol/gsm_04_08.h index aad50d6..27182b6 100644 --- a/include/osmocom/gsm/protocol/gsm_04_08.h +++ b/include/osmocom/gsm/protocol/gsm_04_08.h @@ -2154,6 +2154,9 @@ GSM48_BCAP_RRQ_FR_ONLY = 1, GSM48_BCAP_RRQ_DUAL_HR = 2, GSM48_BCAP_RRQ_DUAL_FR = 3, +/* GSM 04.08 Table 10.72: In network to MS direction, the network must send + * spare bits that are encoded the same as FR_ONLY. */ +#define GSM48_BCAP_RRQ_SPARE_NETWORK_TO_MS GSM48_BCAP_RRQ_FR_ONLY };
/* GSM 04.08 Bearer Capability: Rate Adaption */