Compare Revisions

The credentials to download the source code are:
 Username: svnusers
 Password: svnusers

Ignore whitespace Rev 210 → Rev 211

/tags/v3.0.0/ttcn/LibIms_Steps.ttcn
12,6 → 12,7
import from LibSip_PIXITS all;
import from LibSip_Interface all;
import from LibSip_MessageBodyTypes all;
import from LibSip_Common all;
// LibIms
import from LibIms_Templates all;
import from LibIms_Interface all;
/tags/v3.0.0/ttcn/LibIms_Templates.ttcn
15,6 → 15,7
import from LibSip_PIXITS all;
import from LibSip_XMLTypes all;
import from LibSip_MessageBodyTypes all;
import from LibSip_Common all;
 
// LibIms
import from LibIms_SIPTypesAndValues all;
93,7 → 94,7
}
 
template(present) Addr_Union mw_UE1_Addr_display(
template(present) charstring p_displayName
template(present) DisplayName p_displayName
) := {
nameAddr := {
displayName := p_displayName,
101,6 → 102,9
}
}
 
// MIME name application
template(value) charstring m_mimeMultipart := "multipart/mixed;boundary=""" & PX_SIP_MIME_BOUNDARY & """";
 
group subfields {
 
template(value) SipUrl m_SipUrl_currIpaddr_CSCF(
1630,7 → 1634,7
},
contentType := {
fieldName := CONTENT_TYPE_E,
mediaType := c_mimeMultipart
mediaType := m_mimeMultipart
},
route := p_route
},
1806,7 → 1810,7
template(value) MessageBody p_mb
) modifies m_INFO_Request_IMS_Base := {
msgHeader := {
contentType := m_contentType(c_mimeMultipart)
contentType := m_contentType(m_mimeMultipart)
}
}
 
2010,7 → 2014,7
template(value) MessageBody p_mb
) modifies m_INVITE_Request_IMS := {
msgHeader := {
contentType := m_contentType(c_mimeMultipart)
contentType := m_contentType(m_mimeMultipart)
}
}
 
3890,7 → 3894,7
template(value) MessageBody p_mb
) modifies m_Response_2xxonINVITE := {
msgHeader := {
contentType := m_contentType(c_mimeMultipart)
contentType := m_contentType(m_mimeMultipart)
}
}