Commit c93179a1 authored by nikolajev's avatar nikolajev
Browse files

fixed warnings and errors for last modifications after compiling with other tools

parent 01b03bef
Loading
Loading
Loading
Loading
+13 −12
Original line number Original line Diff line number Diff line
@@ -529,7 +529,7 @@ group HeaderFieldTemplates{
        
        
        template(value) Expires m_expires(template(value) integer p_deltaSec) := {
        template(value) Expires m_expires(template(value) integer p_deltaSec) := {
            fieldName := EXPIRES_E, 
            fieldName := EXPIRES_E, 
            deltaSec := int2str(p_deltaSec)
            deltaSec := int2str(valueof(p_deltaSec))
        }
        }
        
        
        template(value) CSeq m_cseq(template(value) integer p_seqNumber, template(value) charstring p_method) := {
        template(value) CSeq m_cseq(template(value) integer p_seqNumber, template(value) charstring p_method) := {
@@ -897,7 +897,7 @@ group PSTNTemplates {
    
    
    template(value) BearerCapabilityType m_BearerCapabilityType (template(value) Bit5 p_InfoTrfCap):= {
    template(value) BearerCapabilityType m_BearerCapabilityType (template(value) Bit5 p_InfoTrfCap):= {
            bCoctet3    := {codingStandard := "00",                       //Coding standard = CCITT standardized coding
            bCoctet3    := {codingStandard := "00",                       //Coding standard = CCITT standardized coding
                            informationTransferCabability := bit2str(p_InfoTrfCap)},//Information transfer capability
                            informationTransferCabability := bit2str(valueof(p_InfoTrfCap))},//Information transfer capability
            bCoctet4    := {transferMode := "00",                         //Coding standard = CCITT standardized coding
            bCoctet4    := {transferMode := "00",                         //Coding standard = CCITT standardized coding
                            informationTransferRate := "10000"},          //Information transfer rate = 64 kbit/s
                            informationTransferRate := "10000"},          //Information transfer rate = 64 kbit/s
            bCoctet4_1  := omit,
            bCoctet4_1  := omit,
@@ -917,12 +917,12 @@ group PSTNTemplates {
            progressOctet3 := {codingStandard := "00",
            progressOctet3 := {codingStandard := "00",
                               location := "0000"
                               location := "0000"
                              },
                              },
            progressOctet4 := {progressDescription := bit2str(p_progDesc)}
            progressOctet4 := {progressDescription := bit2str(valueof(p_progDesc))}
    }
    }
    
    
    template(value) LowLayerCompatibilityType m_LowLayerCompatibilityType (template(value) Bit5 p_InfoTrfCap) := {
    template(value) LowLayerCompatibilityType m_LowLayerCompatibilityType (template(value) Bit5 p_InfoTrfCap) := {
            lLOctet3 := {codingStandard := "00",                       //Coding standard = CCITT standardized coding
            lLOctet3 := {codingStandard := "00",                       //Coding standard = CCITT standardized coding
                         informationTransferCapability := bit2str(p_InfoTrfCap)},//Information transfer capability
                         informationTransferCapability := bit2str(valueof(p_InfoTrfCap))},//Information transfer capability
            lLOctet3a := omit,
            lLOctet3a := omit,
            lLOctet4 := {transferMode := "00",                        //Coding standard = CCITT standardized coding
            lLOctet4 := {transferMode := "00",                        //Coding standard = CCITT standardized coding
                         informationTransferRate := "10000"},         //Information transfer rate = 64 kbit/s
                         informationTransferRate := "10000"},         //Information transfer rate = 64 kbit/s
@@ -955,7 +955,7 @@ group PSTNTemplates {
                presentationMethod := "01"
                presentationMethod := "01"
            },
            },
            hLOctet4 := {
            hLOctet4 := {
                highLayerCharacteristics := bit2str(p_HLOctet4)
                highLayerCharacteristics := bit2str(valueof(p_HLOctet4))
            },
            },
            hLOctet4aMaintenance := omit,
            hLOctet4aMaintenance := omit,
            hLOctet4Audio := omit
            hLOctet4Audio := omit
@@ -979,7 +979,7 @@ group PSTNTemplates {


    template(present) BearerCapabilityType mw_BearerCapabilityType_TrfCap  (template(value) Bit5 p_InfoTrfCap):= {
    template(present) BearerCapabilityType mw_BearerCapabilityType_TrfCap  (template(value) Bit5 p_InfoTrfCap):= {
            bCoctet3    := {codingStandard := "00",                       //Coding standard = CCITT standardized coding
            bCoctet3    := {codingStandard := "00",                       //Coding standard = CCITT standardized coding
                            informationTransferCabability := bit2str(p_InfoTrfCap)},//Information transfer capability
                            informationTransferCabability := bit2str(valueof(p_InfoTrfCap))},//Information transfer capability
            bCoctet4    := {transferMode := "00",                         //Coding standard = CCITT standardized coding
            bCoctet4    := {transferMode := "00",                         //Coding standard = CCITT standardized coding
                            informationTransferRate := "10000"},          //Information transfer rate = 64 kbit/s
                            informationTransferRate := "10000"},          //Information transfer rate = 64 kbit/s
            bCoctet4_1  := * ,
            bCoctet4_1  := * ,
@@ -1271,12 +1271,13 @@ group modified_templates {
group request_send {
group request_send {
        
        
    template(value) ACK_Request m_ACK_Request_AS(template(value) SipUrl p_requestUri,
    template(value) ACK_Request m_ACK_Request_AS(template(value) SipUrl p_requestUri,
                                                 template(value) CallId p_callId, CSeq p_cSeq,
                                                 template(value) CallId p_callId, 
                                                 template(value) From p_from, To p_to,
                                                 template(value) CSeq p_cSeq,
                                                 template(value) From p_from, 
                                                 template(value) To p_to,
                                                 template(value) Via p_via,
                                                 template(value) Via p_via,
                                                 template(omit)  Route p_route,
                                                 template(omit)  Route p_route,
                                                 template(omit)  RecordRoute
                                                 template(omit)  RecordRoute p_recordRoute)
                                                     p_recordRoute)
    modifies m_ACK_Request_Base := {
    modifies m_ACK_Request_Base := {
        msgHeader := {route := p_route, recordRoute := p_recordRoute}
        msgHeader := {route := p_route, recordRoute := p_recordRoute}
    }
    }
@@ -2267,7 +2268,7 @@ group request_send {
                                                    template(value) DeltaSec p_deltaSec)
                                                    template(value) DeltaSec p_deltaSec)
     modifies m_REGISTER_Request_IMS := {
     modifies m_REGISTER_Request_IMS := {
        msgHeader := {
        msgHeader := {
            expires := m_expires(str2int(p_deltaSec))
            expires := m_expires(str2int(valueof(p_deltaSec)))
        }
        }
    }
    }
    
    
@@ -3393,7 +3394,7 @@ group response_send
    }
    }
        
        
    
    
    template(value) Response m_Response_4XXonINVITE (template(value) StatusLine p_statusLine, template(value) CallId p_callId, CSeq p_cSeq,
    template(value) Response m_Response_4XXonINVITE (template(value) StatusLine p_statusLine, template(value) CallId p_callId, template(value) CSeq p_cSeq,
            template(value) From p_from, template(value) To p_to, template(value) Via p_via, template(value) Contact p_contact ) modifies m_Response_Base:=
            template(value) From p_from, template(value) To p_to, template(value) Via p_via, template(value) Contact p_contact ) modifies m_Response_Base:=
    {
    {
        msgHeader :=
        msgHeader :=