aboutsummaryrefslogtreecommitdiffstats
path: root/src/abis_rsl.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2008-12-27 21:34:06 +0000
committerHarald Welte <laforge@gnumonks.org>2008-12-27 21:34:06 +0000
commit75a983fab09567a59bcacf67416942f35cffe254 (patch)
tree9ffb01f8fc10efd001b6444d5574aeb8828dbf13 /src/abis_rsl.c
parent10b487b1c0c1a1cefa1d4114a166eca71f25bd38 (diff)
* add database handling
* fix IMSI handling
Diffstat (limited to 'src/abis_rsl.c')
-rw-r--r--src/abis_rsl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/abis_rsl.c b/src/abis_rsl.c
index 60713785b..54b706936 100644
--- a/src/abis_rsl.c
+++ b/src/abis_rsl.c
@@ -610,9 +610,6 @@ static int rsl_rx_chan_rqd(struct msgb *msg)
arfcn = lchan->ts->trx->arfcn;
subch = lchan->nr;
- DEBUGP(DRSL, "Activating ARFCN(%u) TS(%u) SS(%u) lctype %u\n",
- arfcn, ts_number, subch, lchan->type);
-
rsl_chan_activate_lchan(lchan, 0x00, rqd_ta);
/* create IMMEDIATE ASSIGN 04.08 messge */
@@ -631,6 +628,9 @@ static int rsl_rx_chan_rqd(struct msgb *msg)
ia.timing_advance = rqd_ta;
ia.mob_alloc_len = 0;
+ DEBUGP(DRSL, "Activating ARFCN(%u) TS(%u) SS(%u) lctype %u chan_nr=0x%02x\n",
+ arfcn, ts_number, subch, lchan->type, ia.chan_desc.chan_nr);
+
/* send IMMEDIATE ASSIGN CMD on RSL to BTS (to send on CCCH to MS) */
return rsl_imm_assign_cmd(bts, sizeof(ia), (u_int8_t *) &ia);
}