Max has uploaded this change for review. ( https://gerrit.osmocom.org/11644
Change subject: NS: print ip:port on error
......................................................................
NS: print ip:port on error
Change-Id: I2f558021b7754db9593934888d12f9c879dc2988
---
M library/NS_Emulation.ttcn
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks
refs/changes/44/11644/1
diff --git a/library/NS_Emulation.ttcn b/library/NS_Emulation.ttcn
index 7cccb25..ca4d1d6 100644
--- a/library/NS_Emulation.ttcn
+++ b/library/NS_Emulation.ttcn
@@ -83,7 +83,9 @@
/* Connect the UDP socket */
res := f_IPL4_connect(NSCP, config.remote_ip,
config.remote_udp_port, config.local_ip, config.local_udp_port, 0, { udp :=
{}});
if (not ispresent(res.connId)) {
- setverdict(fail, "Could not connect NS UDP socket,
check your configuration");
+ setverdict(fail, "Could not connect NS UDP socket from
" &
+ config.local_ip & ":" &
int2str(config.local_udp_port) &
+ " to " & config.remote_ip & ":" &
int2str(config.remote_udp_port));
mtc.stop;
}
g_conn_id := res.connId;
--
To view, visit https://gerrit.osmocom.org/11644
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I2f558021b7754db9593934888d12f9c879dc2988
Gerrit-Change-Number: 11644
Gerrit-PatchSet: 1
Gerrit-Owner: Max <[email protected]>