msuraev has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bsc/+/31038 )
Change subject: SI: set type 10 length properly ......................................................................
SI: set type 10 length properly
According to 3GPP TS 44.018 §9.1.50 SI10 is 168 bits long.
Related: OS#5783 Change-Id: Ifd76ebb10029b95a80a85bea4d102d5e100c182c --- M src/osmo-bsc/bts_trx.c 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve msuraev: Looks good to me, approved laforge: Looks good to me, but someone else must approve
diff --git a/src/osmo-bsc/bts_trx.c b/src/osmo-bsc/bts_trx.c index 436979d..1348e74 100644 --- a/src/osmo-bsc/bts_trx.c +++ b/src/osmo-bsc/bts_trx.c @@ -450,6 +450,9 @@ case SYSINFO_TYPE_6: si_len[si_type] = 11; break; + case SYSINFO_TYPE_10: + si_len[si_type] = 21; + break; default: si_len[si_type] = GSM_MACBLOCK_LEN; }