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/.
Harald Welte gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/7028
bts: ensure fake_trx BB CTRL IP is used from main component
.. not just from the ConnHdlr component, as in previous patch
Change-Id: I3db2884d2519dfd4ae08ff1a4dae5b488677da4c
---
M bts/BTS_Tests.ttcn
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/28/7028/1
diff --git a/bts/BTS_Tests.ttcn b/bts/BTS_Tests.ttcn
index a6c07a4..890c216 100644
--- a/bts/BTS_Tests.ttcn
+++ b/bts/BTS_Tests.ttcn
@@ -626,8 +626,8 @@
private function f_main_trxc_connect() runs on test_CT {
map(self:BB_TRXC, system:BB_TRXC);
var Result res;
- res := TRXC_CodecPort_CtrlFunct.f_IPL4_connect(BB_TRXC, "127.0.0.1", mp_bb_trxc_port,
- "127.0.0.1", 0, -1, {udp:={}}, {});
+ res := TRXC_CodecPort_CtrlFunct.f_IPL4_connect(BB_TRXC, mp_bb_trxc_ip, mp_bb_trxc_port,
+ "", -1, -1, {udp:={}}, {});
g_bb_trxc_conn_id := res.connId;
}
--
To view, visit https://gerrit.osmocom.org/7028
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3db2884d2519dfd4ae08ff1a4dae5b488677da4c
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>