Loading ttcn/LibSip_Templates.ttcn +20 −11 Original line number Diff line number Diff line Loading @@ -275,7 +275,7 @@ module LibSip_Templates headers := * }; template SipUrl mw_SipUrl_Host(charstring p_host) := //* SIP-URL with a calling party number template SipUrl mw_SipUrl_Host(template charstring p_host) := //* SIP-URL with a calling party number { scheme := c_sipScheme, //* contains "sip" userInfo:= *, Loading Loading @@ -1985,7 +1985,7 @@ group request_receive { } } template BYE_Request mw_BYE_Request_ReasonSIP(template CallId p_callId, integer p_cause) modifies mw_BYE_Request_Base := template BYE_Request mw_BYE_Request_ReasonSIP(template CallId p_callId, template integer p_cause) modifies mw_BYE_Request_Base := { msgHeader := { Loading Loading @@ -2482,12 +2482,21 @@ group SDP_Templates { key := omit, attributes := omit }; //TODO - delete old // template SDP_media_desc m_mediaFieldBandwdthAttributes(template SDP_media_field p_mf, template SDP_bandwidth p_bw, template SDP_attribute_list p_attributes) := { // media_field := p_mf, // information := omit, // connections := omit, // bandwidth := {p_bw}, // key := omit, // attributes := p_attributes // }; template SDP_media_desc m_mediaFieldBandwdthAttributes(template SDP_media_field p_mf, template SDP_bandwidth p_bw, template SDP_attribute_list p_attributes) := { template SDP_media_desc m_mediaFieldBandwdthAttributes(template SDP_media_field p_mf, template SDP_bandwidth_list p_bw_l, template SDP_attribute_list p_attributes) := { media_field := p_mf, information := omit, connections := omit, bandwidth := {p_bw}, bandwidth := p_bw_l, key := omit, attributes := p_attributes }; Loading Loading
ttcn/LibSip_Templates.ttcn +20 −11 Original line number Diff line number Diff line Loading @@ -275,7 +275,7 @@ module LibSip_Templates headers := * }; template SipUrl mw_SipUrl_Host(charstring p_host) := //* SIP-URL with a calling party number template SipUrl mw_SipUrl_Host(template charstring p_host) := //* SIP-URL with a calling party number { scheme := c_sipScheme, //* contains "sip" userInfo:= *, Loading Loading @@ -1985,7 +1985,7 @@ group request_receive { } } template BYE_Request mw_BYE_Request_ReasonSIP(template CallId p_callId, integer p_cause) modifies mw_BYE_Request_Base := template BYE_Request mw_BYE_Request_ReasonSIP(template CallId p_callId, template integer p_cause) modifies mw_BYE_Request_Base := { msgHeader := { Loading Loading @@ -2482,12 +2482,21 @@ group SDP_Templates { key := omit, attributes := omit }; //TODO - delete old // template SDP_media_desc m_mediaFieldBandwdthAttributes(template SDP_media_field p_mf, template SDP_bandwidth p_bw, template SDP_attribute_list p_attributes) := { // media_field := p_mf, // information := omit, // connections := omit, // bandwidth := {p_bw}, // key := omit, // attributes := p_attributes // }; template SDP_media_desc m_mediaFieldBandwdthAttributes(template SDP_media_field p_mf, template SDP_bandwidth p_bw, template SDP_attribute_list p_attributes) := { template SDP_media_desc m_mediaFieldBandwdthAttributes(template SDP_media_field p_mf, template SDP_bandwidth_list p_bw_l, template SDP_attribute_list p_attributes) := { media_field := p_mf, information := omit, connections := omit, bandwidth := {p_bw}, bandwidth := p_bw_l, key := omit, attributes := p_attributes }; Loading