aboutsummaryrefslogtreecommitdiffstats
path: root/msc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-04-21 15:37:39 +0200
committerHarald Welte <laforge@gnumonks.org>2019-04-21 17:44:59 +0200
commita89fecf08c20dfd1b8d5e3514a55e0f4a793eb57 (patch)
tree1a7f99371fca3fb4357bd9c1f6462eeedb670ac2 /msc
parente035e3e182ce0e251139321ba1e45b6bb77b84b5 (diff)
f_perform_lu(): Use f_expect_clear(), reduce code duplication
Diffstat (limited to 'msc')
-rw-r--r--msc/BSC_ConnectionHandler.ttcn4
1 files changed, 1 insertions, 3 deletions
diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index b3345ffd..db0e6833 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -384,9 +384,7 @@ runs on BSC_ConnHdlr {
f_expect_mm_info();
/* FIXME: there could be pending SMS or other common procedures by the MSC, let's ignore them */
- BSSAP.receive(tr_BSSMAP_ClearCommand);
- BSSAP.send(ts_BSSMAP_ClearComplete);
- BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
+ f_expect_clear();
setverdict(pass);
}