Commit 95d2b966 authored by rennoch's avatar rennoch
Browse files

- changes following changes in LibSip

- new m_mimeMultipart derived from c_mimeMultipart
parent 26f3781c
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -12,6 +12,7 @@ module LibIms_Steps {
    import from LibSip_PIXITS all;
    import from LibSip_PIXITS all;
    import from LibSip_Interface all;
    import from LibSip_Interface all;
    import from LibSip_MessageBodyTypes all;
    import from LibSip_MessageBodyTypes all;
    import from LibSip_Common all;
    // LibIms
    // LibIms
    import from LibIms_Templates all;
    import from LibIms_Templates all;
    import from LibIms_Interface all;
    import from LibIms_Interface all;
+9 −5
Original line number Original line Diff line number Diff line
@@ -15,6 +15,7 @@ module LibIms_Templates {
    import from LibSip_PIXITS all;
    import from LibSip_PIXITS all;
    import from LibSip_XMLTypes all;
    import from LibSip_XMLTypes all;
    import from LibSip_MessageBodyTypes all;
    import from LibSip_MessageBodyTypes all;
    import from LibSip_Common all;


    // LibIms
    // LibIms
    import from LibIms_SIPTypesAndValues all;
    import from LibIms_SIPTypesAndValues all;
@@ -93,7 +94,7 @@ module LibIms_Templates {
    }
    }


    template(present) Addr_Union mw_UE1_Addr_display(
    template(present) Addr_Union mw_UE1_Addr_display(
        template(present) charstring p_displayName
        template(present) DisplayName p_displayName
    ) := {
    ) := {
        nameAddr := {
        nameAddr := {
            displayName := p_displayName,
            displayName := p_displayName,
@@ -101,6 +102,9 @@ module LibIms_Templates {
        }
        }
    }
    }


    // MIME name application
    template(value) charstring m_mimeMultipart := "multipart/mixed;boundary=""" & PX_SIP_MIME_BOUNDARY & """";

    group subfields {
    group subfields {


        template(value) SipUrl m_SipUrl_currIpaddr_CSCF(
        template(value) SipUrl m_SipUrl_currIpaddr_CSCF(
@@ -1630,7 +1634,7 @@ module LibIms_Templates {
                        },
                        },
                        contentType := {
                        contentType := {
                            fieldName := CONTENT_TYPE_E,
                            fieldName := CONTENT_TYPE_E,
                            mediaType := c_mimeMultipart
                            mediaType := m_mimeMultipart
                        },
                        },
                        route := p_route
                        route := p_route
                    },
                    },
@@ -1806,7 +1810,7 @@ module LibIms_Templates {
                    template(value) MessageBody p_mb
                    template(value) MessageBody p_mb
                ) modifies m_INFO_Request_IMS_Base := {
                ) modifies m_INFO_Request_IMS_Base := {
                    msgHeader := {
                    msgHeader := {
                        contentType := m_contentType(c_mimeMultipart)
                        contentType := m_contentType(m_mimeMultipart)
                    }
                    }
                }
                }


@@ -2010,7 +2014,7 @@ module LibIms_Templates {
                    template(value) MessageBody p_mb
                    template(value) MessageBody p_mb
                ) modifies m_INVITE_Request_IMS := {
                ) modifies m_INVITE_Request_IMS := {
                    msgHeader := {
                    msgHeader := {
                        contentType := m_contentType(c_mimeMultipart)
                        contentType := m_contentType(m_mimeMultipart)
                    }
                    }
                }
                }


@@ -3890,7 +3894,7 @@ module LibIms_Templates {
                        template(value) MessageBody p_mb
                        template(value) MessageBody p_mb
                    ) modifies m_Response_2xxonINVITE := {
                    ) modifies m_Response_2xxonINVITE := {
                        msgHeader := {
                        msgHeader := {
                            contentType := m_contentType(c_mimeMultipart)
                            contentType := m_contentType(m_mimeMultipart)
                        }
                        }
                    }
                    }