msuraev submitted this change.
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(-)
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;
}
To view, visit change 31038. To unsubscribe, or for help writing mail filters, visit settings.