aboutsummaryrefslogtreecommitdiffstats
path: root/library/IPA_Emulation.ttcnpp
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-06-10 11:00:33 +0200
committerlaforge <laforge@gnumonks.org>2019-06-13 09:38:05 +0000
commit76ba541efa5c5b9413df6552c0328e1eab7a800b (patch)
tree86b9437cc34f51b699bd354dea45e3bd4cad4263 /library/IPA_Emulation.ttcnpp
parent936dbe64eeb00b2853ccf11af009fff5d8d44b81 (diff)
bsc: Fix trailing whitespace
Diffstat (limited to 'library/IPA_Emulation.ttcnpp')
-rw-r--r--library/IPA_Emulation.ttcnpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/IPA_Emulation.ttcnpp b/library/IPA_Emulation.ttcnpp
index 3180621e..3ec69226 100644
--- a/library/IPA_Emulation.ttcnpp
+++ b/library/IPA_Emulation.ttcnpp
@@ -2,7 +2,7 @@ module IPA_Emulation {
/* This module implements the IPA multiplex protocol on top of TCP, using the IPL4asp
* test-port as provider. It implements both client and server roles, as well was the CCM
- * handshake for establishing the identity of the client to the server.
+ * handshake for establishing the identity of the client to the server.
*
* It already knows certain well-known sub-protocols such as A-bis RSL, MGCP and SCCP and
* GSUP. IT hence transcodes messages so the user can work with abstract data types rather
@@ -258,7 +258,7 @@ function f_connect(charstring remote_host, IPL4asp_Types.PortNumber remote_port,
function f_bind(charstring local_host, IPL4asp_Types.PortNumber local_port,
IPA_CCM_Parameters ccm_pars := c_IPA_default_ccm_pars) runs on IPA_Emulation_CT {
var IPL4asp_Types.Result res;
- res := IPA_CodecPort_CtrlFunct.f_IPL4_listen(IPA_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 ", local_host, ":", local_port, ", check your configuration");