Commit 85cbcd73 authored by tepelmann's avatar tepelmann
Browse files

Second run of T3Q.

parent c4fb6c31
Loading
Loading
Loading
Loading
+41 −0
Original line number Original line Diff line number Diff line
@@ -6,6 +6,47 @@
module LibIms_SIPTypesAndValues {
module LibIms_SIPTypesAndValues {


    group otherTypes {
    group otherTypes {
        
        /**
         * @desc StatusLine with status code restricted to 18x
         * @remark Used TTCN-3 internally
         */
        type record StatusLine_18x {
            charstring sipVersion,
            integer statusCode (180 .. 189) ,
            charstring reasonPhrase
        }

        /**
         * @desc StatusLine with status code restricted to 2xx
         * @remark Used TTCN-3 internally
         */
        type record StatusLine_2xx {
            charstring sipVersion,
            integer statusCode (200 .. 299) ,
            charstring reasonPhrase
        }

        /**
         * @desc StatusLine with status code restricted to 3xx
         * @remark Used TTCN-3 internally
         */
        type record StatusLine_3xx {
            charstring sipVersion,
            integer statusCode (300 .. 399) ,
            charstring reasonPhrase
        }

        /**
         * @desc StatusLine with status code restricted to 4xx
         * @remark Used TTCN-3 internally
         */
        type record StatusLine_4xx {
            charstring sipVersion,
            integer statusCode (400 .. 499) ,
            charstring reasonPhrase
        }

        type record ImsInterfaceProfile {
        type record ImsInterfaceProfile {
            /**
            /**
             * @desc integer for Port number to exchange SIP messages
             * @desc integer for Port number to exchange SIP messages
+3 −31
Original line number Original line Diff line number Diff line
@@ -1387,7 +1387,7 @@ module LibIms_Templates {


        } // end group resourceListsTemplates
        } // end group resourceListsTemplates


        group ims3gppTemplates {
        group ims3GppTemplates {


            template(present) TIMS3GPP mw_Ims_3gpp_CW := {
            template(present) TIMS3GPP mw_Ims_3gpp_CW := {
                version := 1.0,
                version := 1.0,
@@ -1407,9 +1407,9 @@ module LibIms_Templates {


        group confTemplates {
        group confTemplates {


            template(value) XSD.Boolean boolXSD_true := true;
            template(value) XSD.Boolean m_boolXSD_true := true;
            
            
            template(value) XSD.Boolean boolXSD_false := false;
            template(value) XSD.Boolean m_boolXSD_false := false;


            template(value) urn_ietf_params_xml_ns_conference_info.Media_type m_mediatype_status(
            template(value) urn_ietf_params_xml_ns_conference_info.Media_type m_mediatype_status(
                template(value) Media_status_type p_status
                template(value) Media_status_type p_status
@@ -3448,13 +3448,6 @@ module LibIms_Templates {
                
                
                group responseSend1xx {
                group responseSend1xx {


                    // Status-Line [7.2 ]
                    type record StatusLine_18x {
                        charstring sipVersion,
                        integer statusCode (180 .. 189) ,
                        charstring reasonPhrase
                    }

                    template(value) Response m_Response_18x_Base(
                    template(value) Response m_Response_18x_Base(
                        template(value) StatusLine_18x p_statusLine,
                        template(value) StatusLine_18x p_statusLine,
                        template(omit) CallId p_callId := omit,
                        template(omit) CallId p_callId := omit,
@@ -3779,13 +3772,6 @@ module LibIms_Templates {


                group responseSend2xx {
                group responseSend2xx {


                    // Status-Line [7.2 ]
                    type record StatusLine_2xx {
                        charstring sipVersion,
                        integer statusCode (200 .. 299) ,
                        charstring reasonPhrase
                    }

                    template(value) Response m_Response_2xx_Base(
                    template(value) Response m_Response_2xx_Base(
                        template(value) StatusLine_2xx p_statusLine,
                        template(value) StatusLine_2xx p_statusLine,
                        template(omit) CallId p_callId := omit,
                        template(omit) CallId p_callId := omit,
@@ -4202,13 +4188,6 @@ module LibIms_Templates {


                group responseSend3xx {
                group responseSend3xx {


                    // Status-Line [7.2 ]
                    type record StatusLine_3xx {
                        charstring sipVersion,
                        integer statusCode (300 .. 399) ,
                        charstring reasonPhrase
                    }

                    template(value) Response m_Response_3xx_Base(
                    template(value) Response m_Response_3xx_Base(
                        template(value) StatusLine_3xx p_statusLine,
                        template(value) StatusLine_3xx p_statusLine,
                        template(omit) CallId p_callId := omit,
                        template(omit) CallId p_callId := omit,
@@ -4248,13 +4227,6 @@ module LibIms_Templates {


                group responseSend4xx {
                group responseSend4xx {


                    // Status-Line [7.2 ]
                    type record StatusLine_4xx {
                        charstring sipVersion,
                        integer statusCode (400 .. 499) ,
                        charstring reasonPhrase
                    }

                    template(value) Response m_Response_4xx_Base(
                    template(value) Response m_Response_4xx_Base(
                        template(value) StatusLine_4xx p_statusLine,
                        template(value) StatusLine_4xx p_statusLine,
                        template(omit) CallId p_callId := omit,
                        template(omit) CallId p_callId := omit,