laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41292?usp=email )
Change subject: library: TCAP: add tr_TCAP_N_NOTICE_ind ......................................................................
library: TCAP: add tr_TCAP_N_NOTICE_ind
A SCCP UTDS will be passed to the TCAP layer as TCAP_N_NOTICE_ind. Will be used by utds testsing of tcap loadsharing.
Related: SYS#5423 Change-Id: I002afabb8e827dc35cd9f4e37a6970d91600ee37 --- M library/tcap/TCAP_CodecPort.ttcn 1 file changed, 10 insertions(+), 0 deletions(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/library/tcap/TCAP_CodecPort.ttcn b/library/tcap/TCAP_CodecPort.ttcn index 882a288..cb52814 100644 --- a/library/tcap/TCAP_CodecPort.ttcn +++ b/library/tcap/TCAP_CodecPort.ttcn @@ -230,6 +230,16 @@ SCCP_PAR_Importance importance optional }
+template (present) TCAP_N_NOTICE_ind tr_TCAP_N_NOTICE_ind(template SCCP_PAR_Address called, + template SCCP_PAR_Address calling, + template SCCP_PAR_Reason_For_Return reason, + template TCMessage payload) := { + calledAddress := called, + callingAddress := calling, + reasonForReturn := reason, + userData := payload, + importance := * +}
private function f_dec_ConnectInd(in ASP_SCCP_N_CONNECT_ind pin, out TCAP_N_CONNECT_ind pout) {