diff options
author | Philipp Maier <pmaier@sysmocom.de> | 2020-09-14 21:28:52 +0200 |
---|---|---|
committer | laforge <laforge@osmocom.org> | 2020-09-20 10:05:06 +0000 |
commit | 09f1c6da7d8859c32a8bb30a80c42adc96f0f66b (patch) | |
tree | b19fb9a47215486acb551e2a5b1ae056075d7fc7 | |
parent | eaab57ea5aaef669af3707427d96b843e5acb8d8 (diff) |
MSC_ConnectionHandler: do not allow as_Media_mgw to exit
The altstep as_handover needs to repeat until the IPACC and the MGCP rtp
negotiation is done (MDCX). By setting the norepeat flag of the sub
altsteap as_Media_mgw to true, we allow as_handover to exit early, even
when the handover is not done yet, which eventually causes the testcase
to fail.
Change-Id: I303879a9153d25a02743dc1d4713ae74918b9be7
fixes: OS#4752
-rw-r--r-- | bsc/MSC_ConnectionHandler.ttcn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bsc/MSC_ConnectionHandler.ttcn b/bsc/MSC_ConnectionHandler.ttcn index 76a56fc..c372709 100644 --- a/bsc/MSC_ConnectionHandler.ttcn +++ b/bsc/MSC_ConnectionHandler.ttcn @@ -1269,7 +1269,7 @@ altstep as_handover(inout HandoverState st) runs on MSC_ConnHdlr { } } [st.rr_ho_cmpl_seen] as_Media_ipacc(); - [st.rr_ho_cmpl_seen] as_Media_mgw(true); + [st.rr_ho_cmpl_seen] as_Media_mgw(); [st.rr_ho_cmpl_seen] RSL.receive(tr_RSL_DEACT_SACCH(st.old_chan_nr)) { repeat; } |