ipa: Further progress on the bsc-nat test suite
diff --git a/library/IPA_CodecPort.ttcn b/library/IPA_CodecPort.ttcn
index de47a16..3c68e22 100644
--- a/library/IPA_CodecPort.ttcn
+++ b/library/IPA_CodecPort.ttcn
@@ -18,6 +18,13 @@
 		octetstring	msg
 	}
 
+	template IPA_Send t_IPA_Send(ConnectionId conn_id, IpaStreamId stream_id,
+				octetstring msg, template IpaExtStreamId stream_id_ext := omit) := {
+		connId := conn_id,
+		streamId := stream_id,
+		streamIdExt := stream_id_ext,
+		msg := msg
+	}
 
 	/* 'stream' contains the octets received so far, we must return the total length */
 	function f_IPA_getMsgLen(in octetstring stream, inout ro_integer args) return integer {