aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2019-11-02 19:17:38 +0100
committerlaforge <laforge@osmocom.org>2019-11-23 07:59:07 +0000
commitba960a140d6611e49e00fbed0d2d01ab8def3fd4 (patch)
tree81f855d9bf8bd710d37794623ec7dbcc2eccbb26
parent8fe8a90da2310012076b1db1136186d3c65941d4 (diff)
msc: log tweaks for call / call hangup
-rw-r--r--msc/BSC_ConnectionHandler.ttcn7
1 files changed, 5 insertions, 2 deletions
diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 11f0a5fe..a1c8bd36 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -1389,6 +1389,7 @@ runs on BSC_ConnHdlr {
t_clear := tr_BSSMAP_ClearCommandCSFB;
}
+ log("f_call_hangup 0: tx MNCC_DISC_REQ");
MNCC.send(ts_MNCC_DISC_req(cpars.mncc_callref, valueof(ts_MNCC_cause(23))));
BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_DISC(cpars.transaction_id)));
@@ -1449,9 +1450,10 @@ runs on BSC_ConnHdlr {
f_mt_call_establish(cpars);
- /* Hold the call for some time */
+ log("Hold the call for some time");
f_sleep(3.0);
+ log("Hangup");
f_call_hangup(cpars, true);
setverdict(pass);
@@ -1462,9 +1464,10 @@ runs on BSC_ConnHdlr {
f_mo_call_establish(cpars);
- /* Hold the call for some time */
+ log("Hold the call for some time");
f_sleep(3.0);
+ log("Hangup");
f_call_hangup(cpars, false);
setverdict(pass);