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.orglaforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/26646 )
Change subject: hnodeb: Use alive-type components for infrastructure components
......................................................................
hnodeb: Use alive-type components for infrastructure components
See 7138913d664c33b2404e3d293ab820fb3516ff73 for more information.
Change-Id: I342b172aec58542be8c24228f488a635f84bda5a
---
M hnodeb/HNBGW_ConnectionHandler.ttcn
1 file changed, 3 insertions(+), 3 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
diff --git a/hnodeb/HNBGW_ConnectionHandler.ttcn b/hnodeb/HNBGW_ConnectionHandler.ttcn
index b069a11..a3ff32f 100644
--- a/hnodeb/HNBGW_ConnectionHandler.ttcn
+++ b/hnodeb/HNBGW_ConnectionHandler.ttcn
@@ -71,7 +71,7 @@
private function f_HNBGW_ConnHdlr_init_iuh(charstring id) runs on HNBGW_ConnHdlr {
var Iuh_Emulation_CT vc_Iuh;
- vc_Iuh := Iuh_Emulation_CT.create(id & "-HNBGW");
+ vc_Iuh := Iuh_Emulation_CT.create(id & "-HNBGW") alive;
connect(self:HNBAP, vc_Iuh:HNBAP);
connect(self:RUA, vc_Iuh:RUA);
@@ -94,7 +94,7 @@
sgsn_role := false
};
- vc_GTP := GTP_Emulation_CT.create(id);
+ vc_GTP := GTP_Emulation_CT.create(id) alive;
connect(self:GTP, vc_GTP:CLIENT);
connect(self:GTP_PROC, vc_GTP:CLIENT_PROC);
vc_GTP.start(GTP_Emulation.main(gtp_cfg));
@@ -255,7 +255,7 @@
RtpemMode mode := RTPEM_MODE_BIDIR)
runs on HNBGW_ConnHdlr {
/* Step 0: initialize, connect and start the emulation component */
- vc_RTPEM := RTP_Emulation_CT.create(testcasename() & "-RTPEM");
+ vc_RTPEM := RTP_Emulation_CT.create(testcasename() & "-RTPEM") alive;
map(vc_RTPEM:RTP, system:RTP);
map(vc_RTPEM:RTCP, system:RTCP);
connect(vc_RTPEM:CTRL, self:RTPEM_CTRL);
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/26646
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: I342b172aec58542be8c24228f488a635f84bda5a
Gerrit-Change-Number: 26646
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge at osmocom.org>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20211220/9501a07d/attachment.htm>