pcu_sock: LOG + drop DATA.req from PCU for non-PDCH timeslot

Change-Id: I3ae496eca96bc0823dfeca16ce36c200ce000895
This commit is contained in:
Harald Welte 2018-02-28 19:41:43 +01:00
parent 0be8200455
commit d5988d27e9
1 changed files with 6 additions and 0 deletions

View File

@ -528,6 +528,12 @@ static int pcu_rx_data_req(struct gsm_bts *bts, uint8_t msg_type,
break;
}
ts = &trx->ts[data_req->ts_nr];
if (!ts_should_be_pdch(ts)) {
LOGP(DPCU, LOGL_ERROR, "%s: Received PCU DATA request for non-PDCH TS\n",
gsm_ts_name(ts));
rc = -EINVAL;
break;
}
is_ptcch = (data_req->sapi == PCU_IF_SAPI_PTCCH);
rc = l1sap_pdch_req(ts, is_ptcch, data_req->fn, data_req->arfcn,
data_req->block_nr, data_req->data, data_req->len);