OVERVIEW   INDEX   DEPRECATED   HELP   CORRESPONDENCES   |
|
| Templates Summary | |
|---|---|
| m_requestLine_dummy | |
| m_requestLine | |
| m_sipUri | |
| m_msgHeader_dummy | |
template RequestLine m_requestLine_dummy(Method p_method) :=
{
method := p_method,
requestUri := c_unavailableUri,
sipVersion := c_sipNameVersion
}
template RequestLine m_requestLine(Method p_method, SipUrl p_sipUrl) :=
{
method := p_method,
requestUri := p_sipUrl,
sipVersion := c_sipNameVersion
}
template SipUrl m_sipUri(charstring p_user, charstring p_host) :=
{
scheme := c_sipScheme,
userInfo := {userOrTelephoneSubscriber:=p_user, password:=omit},
hostPort := {host:=p_host, portField:=c_defaultSipPort},
urlParameters := omit,
headers := omit
};
template MessageHeader m_msgHeader_dummy :=
{
accept := omit,
acceptContact := omit,
acceptEncoding := omit,
acceptLanguage := omit,
alertInfo := omit,
allow := omit,
allowEvents := omit,
authenticationInfo := omit,
authorization := omit,
callId := c_empty_CallId,
callInfo := omit,
contact := omit,
contentDisposition := omit,
contentEncoding := omit,
contentLanguage := omit,
contentLength := {fieldName := CONTENT_LENGTH_E, len:= 0},
contentType := omit,
cSeq := c_empty_cSeq,
date := omit,
errorInfo := omit,
event := omit,
expires := omit,
fromField := c_empty_From,
historyInfo := omit,
inReplyTo := omit,
maxForwards := c_maxForwards70,
mimeVersion := omit,
minExpires := omit,
minSE := omit,
organization := omit,
pAccessNetworkInfo := omit,
pAssertedID := omit,
pAssertedService := omit,
pAssociatedURI := omit,
path := omit,
pCalledPartyID := omit,
pChargingFunctionAddresses := omit,
pChargingVector := omit,
pEarlyMedia := omit,
pMediaAuthorization := omit,
pPreferredID := omit,
priority := omit,
privacy := omit,
proxyAuthenticate := omit,
proxyAuthorization := omit,
proxyRequire := omit,
pVisitedNetworkID := omit,
rAck := omit,
rSeq := omit,
reason := omit,
recordRoute := omit,
referredBy := omit,
referTo := omit,
replaces := omit,
replyTo := omit,
require := omit,
retryAfter := omit,
route := omit,
securityClient := omit,
securityServer := omit,
securityVerify := omit,
server := omit,
serviceRoute := omit,
sessionExpires := omit,
subject := omit,
subscriptionState := omit,
supported := omit,
timestamp := omit,
toField := c_empty_To,
unsupported := omit,
userToUser := omit,
userAgent := omit,
via := c_empty_Via,
warning := omit,
wwwAuthenticate := omit,
undefinedHeader_List := omit
}