BSSGP_Emulation: Support up to 64 BVCs with 64 users each

Increase this from the previous limit of 16 BVC with 16 users each

Change-Id: I8abca1c020d0ba4b89a6045e99d3a9eb7bcc4648
diff --git a/library/BSSGP_Emulation.ttcnpp b/library/BSSGP_Emulation.ttcnpp
index 7996f96..4af5f82 100644
--- a/library/BSSGP_Emulation.ttcnpp
+++ b/library/BSSGP_Emulation.ttcnpp
@@ -253,7 +253,7 @@
 	/* port to per-BVC components */
 	port BSSGP_BVC_SP_PT BVC;
 	/* per-BVC state table */
-	var BvcEntity BvcTable[16];
+	var BvcEntity BvcTable[64];
 };
 
 /* one element in the per-BVC state table */
@@ -722,7 +722,7 @@
 	var BssgpCause g_last_block_cause;
 	var BssgpCause g_last_reset_cause;
 
-	var ClientEntity ClientTable[16];
+	var ClientEntity ClientTable[64];
 };
 
 /* port between global BSSGP_CT and per-BVC BSSGP_BVC_CT */