Commit 70fa9ea0 authored by pintar's avatar pintar
Browse files

Changes due to new version of TSS/TP document

parent 9b72a217
Loading
Loading
Loading
Loading
+1243 −450

File changed.

Preview size limit exceeded, changes collapsed.

+29 −2
Original line number Diff line number Diff line
@@ -43,6 +43,33 @@ group MessageTemplates{
        messageBody := p_mb
    }
            
    template INVITE_Request m_INVITE_Request_CDIV_privacy(
        SipUrl p_requestUri, 
        CallId p_callId, 
        CSeq p_cSeq,
        From p_from, 
        To p_to, 
        Via p_via, 
        Contact p_contact,
        template HistoryInfo p_historyInfo,
        template Privacy p_privacy,
        MessageBody p_mb
    ) modifies m_INVITE_Request_Base := {
        msgHeader := {
            contentLength	:= {
                fieldName := CONTENT_LENGTH_E, 
                len:= f_MessageBodyLength(p_mb)
            },
            contentType := {
                fieldName := CONTENT_TYPE_E, 
                mediaType :=  c_sdpAplication
            },
            historyInfo := p_historyInfo,
            privacy := p_privacy
        },
        messageBody := p_mb
    }
    
    template INVITE_Request mw_INVITE_Request_CDIV(
    	template HistoryInfo p_historyInfo
    ) modifies mw_INVITE_Request_Base := {
@@ -343,12 +370,12 @@ group MessageTemplates{
          elem := omit
        }
        
        template Comm_div_info_type mw_comm_div_ntfy_info := {
        template Comm_div_info_type mw_comm_div_ntfy_info(template User_info_type p_user_info_type) := {
          entity := "entity",
          comm_div_subs_info := *,
          comm_div_ntfy_info := {
              anyAttributes := *,
              originating_user_info := ?,
              originating_user_info := p_user_info_type,
              diverting_user_info := ?,
              diverted_to_user_info := ?,
              diversion_time_info := ?,//"101231235959" yymmddhhmmss
+334 −119

File changed.

Preview size limit exceeded, changes collapsed.