From 29ff1a5adcff61568c030905177d184c98f59f16 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 15 Oct 2016 16:28:12 +0200 Subject: 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 --- openbsc/src/libbsc/abis_rsl.c | 3 +++ 1 file changed, 3 insertions(+) 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); -- cgit v1.2.3