aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-10-15 16:28:12 +0200
committerHarald Welte <laforge@gnumonks.org>2016-10-15 16:37:11 +0200
commit29ff1a5adcff61568c030905177d184c98f59f16 (patch)
tree90eae876cef98c998116d70891c7a1db291500a2
parenta8292859a035c0b2d2d6004395d9afc710946458 (diff)
abis_rsl: Add mandatory IE for Ericsson RBS2000 PDCH activation
We need to include the RSL_IE_ACT_TYPE Information Element with the proprietary coding 0x0F for "packet channel related activation" in order for the RBS2xxx to accept this message Change-Id: I53bad674d3bb02f5210e71ca5b4280be9c956a57
-rw-r--r--openbsc/src/libbsc/abis_rsl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbsc/src/libbsc/abis_rsl.c b/openbsc/src/libbsc/abis_rsl.c
index 95a18cfa6..266169595 100644
--- a/openbsc/src/libbsc/abis_rsl.c
+++ b/openbsc/src/libbsc/abis_rsl.c
@@ -499,6 +499,9 @@ static int rsl_rbs2k_pdch_activate(struct gsm_bts_trx_ts *ts, int is_activation)
dh->chan_nr = chan_nr;
}
+ /* Activation Type: Related to packet channel */
+ msgb_tv_put(msg, RSL_IE_ACT_TYPE, 0x0F);
+
msg->dst = trx->rsl_link;
return abis_rsl_sendmsg(msg);