aboutsummaryrefslogtreecommitdiffstats
path: root/library/IPA_Emulation.ttcnpp
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-03-11 15:22:02 +0100
committerMax <msuraev@sysmocom.de>2019-03-11 15:22:02 +0100
commitb7aae8b957e70d6930efb7d988353b449ef21358 (patch)
treed232484161516342e318fd505bdde86830f047ba /library/IPA_Emulation.ttcnpp
parentba06feb0ce7d85229bc3157d7d0c7e1ef2a61432 (diff)
IPA: log host:port on listen errors
Diffstat (limited to 'library/IPA_Emulation.ttcnpp')
-rw-r--r--library/IPA_Emulation.ttcnpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/IPA_Emulation.ttcnpp b/library/IPA_Emulation.ttcnpp
index f5563276..a2066ee5 100644
--- a/library/IPA_Emulation.ttcnpp
+++ b/library/IPA_Emulation.ttcnpp
@@ -258,7 +258,7 @@ function f_bind(charstring local_host, IPL4asp_Types.PortNumber local_port,
res := IPA_CodecPort_CtrlFunct.f_IPL4_listen(IPA_PORT,
local_host, local_port, { tcp:={} });
if (not ispresent(res.connId)) {
- setverdict(fail, "Could not listen IPA socket, check your configuration");
+ setverdict(fail, "Could not listen IPA socket ", local_host, ":", local_port, ", check your configuration");
mtc.stop;
}
g_ipa_conn_id := res.connId;