aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2020-01-10 00:46:57 +0100
committerlaforge <laforge@osmocom.org>2020-01-10 16:03:27 +0000
commitf3906e63f8f31db7e6be8480070cdbc89761c571 (patch)
tree0f9f64cba71f87c449abac7e607d4da0bd809fa9
parentae747741388d3e3bb538332f26d49b20ac9aee69 (diff)
library/GSUP_Emulation.ttcn: extend size of GsupExpectTable
We already have 16 entries in the GsupImsiTable. Let's also extend the GsupExpectTable, so we can have 16 components of type BSC_ConnHdlr running in parallel. Change-Id: Ibca0e9196c25ab00803041b81f7b490ba2f0a3ba
-rw-r--r--library/GSUP_Emulation.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/GSUP_Emulation.ttcn b/library/GSUP_Emulation.ttcn
index ea8ba225..5695534a 100644
--- a/library/GSUP_Emulation.ttcn
+++ b/library/GSUP_Emulation.ttcn
@@ -64,7 +64,7 @@ type component GSUP_Emulation_CT {
var ConnectionData GsupImsiTable[16];
/* pending expected incoming connections */
- var ExpectData GsupExpectTable[8];
+ var ExpectData GsupExpectTable[16];
/* procedure based port to register for incoming connections */
port GSUPEM_PROC_PT GSUP_PROC;
};