ASCI: Use a unique call-id for RTP streams

The MGCP protocol features the 'C' (call-id) to identify which
connections belong to the same call. They may be used by MGW for
accounting or management procedures.

So far we sent the MNCC callref as call-id. Instead, add a separate
unique call_id number space. Assign a unique call_id to each
transaction.

Change-Id: I36c5f159fa0b54fb576ff8bd279928b895554793
Related: OS#4854
diff --git a/src/libmsc/msc_t.c b/src/libmsc/msc_t.c
index b3429ed..eb6c797 100644
--- a/src/libmsc/msc_t.c
+++ b/src/libmsc/msc_t.c
@@ -160,7 +160,7 @@
 	}
 
 	msc_t->inter_msc.cell_id_target = ran_dec->handover_request.cell_id_target;
-	msc_t->inter_msc.callref = ran_dec->handover_request.call_id;
+	msc_t->inter_msc.call_id = ran_dec->handover_request.call_id;
 
 	/* TODO other parameters...?
 	 * Global Call Reference
@@ -358,8 +358,8 @@
 						   MSC_EV_CALL_LEG_RTP_LOCAL_ADDR_AVAILABLE,
 						   MSC_EV_CALL_LEG_RTP_COMPLETE);
 	if (!msc_t->inter_msc.call_leg
-	    || call_leg_ensure_ci(msc_t->inter_msc.call_leg, RTP_TO_RAN, msc_t->inter_msc.callref, NULL, NULL, NULL)
-	    || call_leg_ensure_ci(msc_t->inter_msc.call_leg, RTP_TO_CN, msc_t->inter_msc.callref, NULL, NULL, NULL)) {
+	    || call_leg_ensure_ci(msc_t->inter_msc.call_leg, RTP_TO_RAN, msc_t->inter_msc.call_id, NULL, NULL, NULL)
+	    || call_leg_ensure_ci(msc_t->inter_msc.call_leg, RTP_TO_CN, msc_t->inter_msc.call_id, NULL, NULL, NULL)) {
 		msc_t_error("Failed to set up call leg\n");
 		return;
 	}