Change in osmo-ttcn3-hacks[master]: NS_Emulation: Factor-out function to broadcast to all NS_VCs

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

laforge gerrit-no-reply at lists.osmocom.org
Sat Feb 13 15:49:38 UTC 2021


laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/22897 )


Change subject: NS_Emulation: Factor-out function to broadcast to all NS_VCs
......................................................................

NS_Emulation: Factor-out function to broadcast to all NS_VCs

Change-Id: I8cd16031dbbd244dcff74fc8a1cd69e9f8a06dbf
---
M library/NS_Emulation.ttcnpp
1 file changed, 7 insertions(+), 3 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/97/22897/1

diff --git a/library/NS_Emulation.ttcnpp b/library/NS_Emulation.ttcnpp
index 6d8113c..24c9941 100644
--- a/library/NS_Emulation.ttcnpp
+++ b/library/NS_Emulation.ttcnpp
@@ -461,6 +461,12 @@
 		}
 	}
 
+	private function f_broadcast_ns_ctrl(template (value) NsCtrlRequest req) runs on NS_CT {
+		for (var integer i := 0; i < lengthof(g_nsvcs); i := i+1) {
+			NSVC.send(req) to g_nsvcs[i].vc_conn;
+		}
+	}
+
 	/* simple IP Sub-Network Service responder for the SGSN side. This is not a full implementation
 	 * of the protocol, merely sufficient to make the PCU/BSS side happy to proceed */
 	private altstep as_vcg_sns_sgsn() runs on NS_CT {
@@ -489,9 +495,7 @@
 				/* success */
 				log("SNS Config succeeded. Sending Alive");
 				/* inform all NS-VC that they are now considered alive */
-				for (var integer i := 0; i < lengthof(g_nsvcs); i := i+1) {
-					NSVC.send(NsCtrlRequest:StartAliveProcedure) to g_nsvcs[i].vc_conn;
-					}
+				f_broadcast_ns_ctrl(NsCtrlRequest:StartAliveProcedure);
 				}
 			[] NSVC.receive(SnsIndication:{sind.nsvci,
 							tr_SNS_CONFIG_ACK(g_config.nsei, ?)}) from vc {

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/22897
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I8cd16031dbbd244dcff74fc8a1cd69e9f8a06dbf
Gerrit-Change-Number: 22897
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210213/8559d304/attachment.htm>


More information about the gerrit-log mailing list