msc: log tweaks for call / call hangup

Change-Id: I06474e3d592195a8c422493166d9f042da1ac7e6
This commit is contained in:
Neels Hofmeyr 2019-11-02 19:17:38 +01:00 committed by laforge
parent 8fe8a90da2
commit ba960a140d
1 changed files with 5 additions and 2 deletions

View File

@ -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);