fixeria has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36194?usp=email )
Change subject: stp: cosmetic: use m3cfg variable in f_M3UA_listen()
......................................................................
stp: cosmetic: use m3cfg variable in f_M3UA_listen()
Change-Id: Ic5550f17e8925c292df5b3b27cf5898edf10fd23
Related: SYS#5424
---
M stp/STP_Tests_M3UA.ttcn
1 file changed, 12 insertions(+), 2 deletions(-)
Approvals:
fixeria: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/stp/STP_Tests_M3UA.ttcn b/stp/STP_Tests_M3UA.ttcn
index a0162cb..9f3bf0c 100644
--- a/stp/STP_Tests_M3UA.ttcn
+++ b/stp/STP_Tests_M3UA.ttcn
@@ -338,7 +338,7 @@
opt_list := {opt_add_local_addrs};
}
- if (mp_m3ua_configs[i].use_tcp) {
+ if (m3cfg.use_tcp) {
res := M3UA_CodecPort_CtrlFunct.f_IPL4_listen(M3UA[i], mp_local_m3ua_ip[0],
m3cfg.local_port,
{tcp:={}});
} else {
@@ -349,7 +349,7 @@
setverdict(fail, "Could not bind M3UA socket, check your configuration");
mtc.stop;
}
- if (mp_m3ua_configs[i].use_tcp) {
+ if (m3cfg.use_tcp) {
M3UA_CodecPort.f_set_tcp_segmentation(M3UA[i], res.connId);
}
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36194?usp=email
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: Ic5550f17e8925c292df5b3b27cf5898edf10fd23
Gerrit-Change-Number: 36194
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: merged