aboutsummaryrefslogtreecommitdiffstats
path: root/library/RAN_Emulation.ttcnpp
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-06-16 00:14:25 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2020-06-20 21:43:21 +0200
commit0fbec5678db394487287e14f36ab1e200dad9957 (patch)
tree2ed481c0181deafdfec88c2f9d5f630d903a4ce3 /library/RAN_Emulation.ttcnpp
parent90f8096890902c4fd632c592591ddb0c4dcf6b3c (diff)
RAN_Emulation: drop unused function f_bssap_wait_for_reset()
Diffstat (limited to 'library/RAN_Emulation.ttcnpp')
-rw-r--r--library/RAN_Emulation.ttcnpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/library/RAN_Emulation.ttcnpp b/library/RAN_Emulation.ttcnpp
index 5450706a..a400dcda 100644
--- a/library/RAN_Emulation.ttcnpp
+++ b/library/RAN_Emulation.ttcnpp
@@ -518,28 +518,6 @@ runs on RAN_Emulation_CT return template PDU_BSSAP {
return g_ran_ops.unitdata_cb.apply(bssap);
}
-private function f_bssap_wait_for_reset() runs on RAN_Emulation_CT {
- var BSSAP_N_UNITDATA_ind ud_ind;
- timer T := 20.0;
- var boolean append_osmux_support := append_osmux_ie();
-
- T.start;
- alt {
- [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(append_osmux_support))) -> value ud_ind {
- BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
- ts_BSSMAP_ResetAck(append_osmux_support)));
- }
- [] as_reset_ack(append_osmux_support);
- [] BSSAP.receive {
- repeat;
- }
- [] T.timeout {
- setverdict(fail, "Timeout waiting for BSSAP RESET");
- mtc.stop;
- }
- }
-}
-
function f_bssap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on RAN_Emulation_CT {
timer T := 5.0;
var boolean append_osmux_support := append_osmux_ie();