OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
| Templates Summary | |
|---|---|
| m_msrpContentStuff_Dummy | Dummy send template for ContentStuff
@ see RFC 4975 - Figure 2: Example MSRP Exchange
Content-Type: text/plain Hey Bob, are you there? |
| mw_mediaType_any | |
| mw_contentType_any | |
| mw_contentStuff_any | |
| mw_contentType | |
template (value) ContentStuff m_msrpContentStuff_Dummy := {
mimeHeaders := omit,
contentType := {
headerName := CONTENT_TYPE_E,
mediaType := {
mediaType := "text",
subType := "plain",
genParams := omit
}
},
data := char2oct("Hey Bob, are you there?")
}
Content-Type: text/plain Hey Bob, are you there?
template MediaType mw_mediaType_any := {
mediaType := ?,
subType := ?,
genParams := *
}
template MsrpContentType mw_contentType_any := {
headerName := CONTENT_TYPE_E,
mediaType := mw_mediaType_any
}
template ContentStuff mw_contentStuff_any := {
mimeHeaders := *,
contentType := mw_contentType_any,
data := ?
}
template MsrpContentType mw_contentType(
in charstring p_mediaType,
in charstring p_subType
) modifies mw_contentType_any := {
headerName := CONTENT_TYPE_E,
mediaType := {
mediaType := p_mediaType,
subType := p_subType,
genParams := *
}
}