aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-10-15 16:28:12 +0200
committerPhilipp <pmaier@sysmocom.de>2016-10-19 10:16:27 +0200
commit54a0a25395ba752d1d77a82c2a3e435198e8af95 (patch)
tree4403bd52c203fb2d090a305e350156b7855bd9d8
parent8b91602f3bf08e975a5bca4a3d12775a40d6c385 (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);