aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-05-28 19:56:11 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-05-28 20:19:49 +0700
commit34c940b721def9e0be4371f2ca8faa12027fcd02 (patch)
tree1f277843346748a951a9b32d612942b5a2787bc3
parentfddc20b63ea46e616bd98c1ff56f9b40b535156f (diff)
pcu/GPRS_Components: send DATA.cnf in f_pcuif_rx_imm_ass()
The IUT expects a confirmation when Immediate Assignment is sent on PCH. Change-Id: I585a1933dfb2119f1d3223b24db191282fd698b7
-rw-r--r--pcu/GPRS_Components.ttcn6
1 files changed, 6 insertions, 0 deletions
diff --git a/pcu/GPRS_Components.ttcn b/pcu/GPRS_Components.ttcn
index a85cd5e4..7eff3996 100644
--- a/pcu/GPRS_Components.ttcn
+++ b/pcu/GPRS_Components.ttcn
@@ -196,6 +196,12 @@ runs on MS_BTS_IFACE_CT return boolean {
}
log("Rx Immediate Assignment: ", rr_imm_ass);
+
+ /* Send DATA.cnf back to the IUT (only needed for PCH) */
+ if (pcu_msg.u.data_req.sapi == PCU_IF_SAPI_PCH) {
+ f_pcuif_tx_data_cnf(pcu_msg);
+ }
+
setverdict(pass);
return true;
}