s1gw: cosmetic: ts_SCTP -> c_SctpTuple_S1AP

Change-Id: Ifc7768014f54645e57090102548649c971ed934b
Related: SYS#6772
diff --git a/s1gw/S1AP_Server.ttcn b/s1gw/S1AP_Server.ttcn
index 1128e76..904f106 100644
--- a/s1gw/S1AP_Server.ttcn
+++ b/s1gw/S1AP_Server.ttcn
@@ -92,9 +92,9 @@
 	msg := msg
 };
 
-template (value) SctpTuple ts_SCTP(template (omit) integer ppid := 18) := {
+const SctpTuple c_SctpTuple_S1AP := {
 	sinfo_stream := omit,
-	sinfo_ppid := ppid,
+	sinfo_ppid := 18, /* S1AP */
 	remSocks := omit,
 	assocId := omit
 };
@@ -195,7 +195,7 @@
 runs on S1AP_Server_CT {
 	log("Closing an eNB connection (id=", conn_id, ")");
 	S1AP_CodecPort_CtrlFunct.f_IPL4_close(S1AP, conn_id,
-					      { sctp := valueof(ts_SCTP) });
+					      { sctp := c_SctpTuple_S1AP });
 	f_conn_del(conn_id);
 }
 
@@ -356,7 +356,7 @@
 	map(self:S1AP, system:S1AP_CODEC_PT);
 	res := S1AP_CodecPort_CtrlFunct.f_IPL4_listen(S1AP,
 						      cpars.local_ip, cpars.local_port,
-						      { sctp := valueof(ts_SCTP) });
+						      { sctp := c_SctpTuple_S1AP });
 	if (not ispresent(res.connId)) {
 		setverdict(fail, "Could not create an S1AP socket, check your configuration");
 		mtc.stop;