aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-12-22 20:39:20 +0100
committerHarald Welte <laforge@gnumonks.org>2017-12-22 20:40:38 +0100
commit8b20f7c96320c3a65b9f9a7b6d8911b49e063f45 (patch)
tree1870899718656ec4bc24c371d1dcaca40b8690af
parentdf32ab1be811c134fbf1f5216bcbe08a18bc84a7 (diff)
BSSAP_Adapter: Fix missing 'repeat' in as_reset_ack()
The as_reset_ack() exists to acknowledge any incoming RESET without every test case having to deal with it explicitly. However, of course, the processing of an inbound RESET should not abort but the alt clause shall continue. Change-Id: I94dc72b5788ccc8dff2c4b80599c9fbf7e90e730
-rw-r--r--bsc/BSSAP_Adapter.ttcn1
1 files changed, 1 insertions, 0 deletions
diff --git a/bsc/BSSAP_Adapter.ttcn b/bsc/BSSAP_Adapter.ttcn
index f1ff5b6b..4268b29b 100644
--- a/bsc/BSSAP_Adapter.ttcn
+++ b/bsc/BSSAP_Adapter.ttcn
@@ -120,6 +120,7 @@ private altstep as_reset_ack() runs on BSSAP_Adapter_CT {
log("Respoding to inbound RESET with RESET-ACK");
BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
ts_BSSMAP_ResetAck));
+ repeat;
}
}