ASCI: Add two new transaction types for VGCS and VBS

- TRANS_GCC is used for the voice group call.
- TRANS_BCC for the voice broadcast call.

This also includes the use counters for transaction and CM service
request usage:
- MSC_A_USE_GCC
- MSC_A_USE_BCC
- MSC_A_USE_CM_SERVICE_BCC
- MSC_A_USE_CM_SERVICE_GCC

Change-Id: Iddd11f813582ac2ac2bdee91cc3a525986deb514
Related: OS#4854
diff --git a/include/osmocom/msc/transaction.h b/include/osmocom/msc/transaction.h
index bc6c316..356bd6c 100644
--- a/include/osmocom/msc/transaction.h
+++ b/include/osmocom/msc/transaction.h
@@ -43,6 +43,8 @@
 };
 
 enum trans_type {
+	TRANS_GCC = GSM48_PDISC_GROUP_CC,
+	TRANS_BCC = GSM48_PDISC_BCAST_CC,
 	TRANS_CC = GSM48_PDISC_CC,
 	TRANS_SMS = GSM48_PDISC_SMS,
 	TRANS_USSD = GSM48_PDISC_NC_SS,
@@ -178,6 +180,10 @@
 static inline int trans_log_subsys(enum trans_type type)
 {
 	switch (type) {
+	case TRANS_GCC:
+		return DGCC;
+	case TRANS_BCC:
+		return DBCC;
 	case TRANS_CC:
 	case TRANS_SILENT_CALL:
 		return DCC;