RSL add debug statements when sending RSL EST REQ and RSL REL REQ.

This commit is contained in:
Harald Welte 2012-04-26 19:42:19 +02:00
parent 6e8dcf304c
commit fda74ee055
1 changed files with 6 additions and 0 deletions

View File

@ -783,6 +783,9 @@ int rsl_establish_request(struct gsm_lchan *lchan, uint8_t link_id)
link_id, 0);
msg->dst = lchan->ts->trx->rsl_link;
DEBUGP(DRLL, "%s RSL RLL ESTABLISH REQ (link_id=0x%02x)\n",
gsm_lchan_name(lchan), link_id);
return abis_rsl_sendmsg(msg);
}
@ -805,6 +808,9 @@ int rsl_release_request(struct gsm_lchan *lchan, uint8_t link_id, uint8_t reason
msg->dst = lchan->ts->trx->rsl_link;
DEBUGP(DRLL, "%s RSL RLL RELEASE REQ (link_id=0x%02x, reason=%u)\n",
gsm_lchan_name(lchan), link_id, reason);
return abis_rsl_sendmsg(msg);
}