aboutsummaryrefslogtreecommitdiffstats
path: root/library/MNCC_Emulation.ttcn
diff options
context:
space:
mode:
Diffstat (limited to 'library/MNCC_Emulation.ttcn')
-rw-r--r--library/MNCC_Emulation.ttcn6
1 files changed, 5 insertions, 1 deletions
diff --git a/library/MNCC_Emulation.ttcn b/library/MNCC_Emulation.ttcn
index ee9b58eb..9522e72a 100644
--- a/library/MNCC_Emulation.ttcn
+++ b/library/MNCC_Emulation.ttcn
@@ -37,6 +37,10 @@ import from MNCC_CodecPort all;
import from MNCC_Types all;
import from UD_Types all;
+modulepar {
+ int mp_mncc_version := 5;
+}
+
/* General "base class" component definition, of which specific implementations
* derive themselves by means of the "extends" feature */
type component MNCC_ConnHdlr {
@@ -264,7 +268,7 @@ runs on MNCC_Emulation_CT {
if (role_server) {
f_listen(sock);
- MNCC.send(t_SD_MNCC(g_mncc_ud_id, ts_MNCC_HELLO));
+ MNCC.send(t_SD_MNCC(g_mncc_ud_id, ts_MNCC_HELLO(version := mp_mncc_version)));
} else {
f_connect(sock);
}