Commit 174ec027 authored by Yann Garcia's avatar Yann Garcia
Browse files

Update LibSip TITAN patch

parent eb2e398a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
sources := LibIms_UpperTester.ttcn
 No newline at end of file

ttcn/LibIot/module.mk

0 → 100644
+10 −0
Original line number Diff line number Diff line
sources := \
        LibIot_Functions.ttcn \
        LibIot_TestConfiguration.ttcn \
        LibIot_TypesAndValues.ttcn \
        LibIot_VxLTE_PIXITS.ttcn \
        LibIot_PIXITS.ttcn \
        LibIot_TestInterface.ttcn \
        LibIot_VxLTE_Functions.ttcn \
        LibIot_VxLTE_Templates.ttcn \

ttcn/LibMsrp/module.mk

0 → 100644
+6 −0
Original line number Diff line number Diff line
sources := \
        LibMsrp_Functions.ttcn \
		LibMsrp_PIXITS.ttcn \
		LibMsrp_Templates.ttcn \
		LibMsrp_TypesAndValues.ttcn \
+1 −0
Original line number Diff line number Diff line
sources := LibUpperTester.ttcn
 No newline at end of file
+19 −0
Original line number Diff line number Diff line
module LibDiameter_EncdecDeclarations {

    //LibDiameter
    import from LibDiameter_TypesAndValues all;
    import from LibDiameter_Types_Base_AVPs all;
    import from LibDiameter_Types_Gx_AVPs all;
    import from LibDiameter_Types_Rx_AVPs all;
    import from LibDiameter_Types_S6a_AVPs all;
    import from LibDiameter_Types_S9_AVPs all;
    import from LibDiameter_Types_CxDx_AVPs all;
    import from LibDiameter_Types_RfRo_AVPs all;

    fx_enc_CER_MSG(in CER_MSG p_CER_MSG) return bitstring
        with {extension "prototype(convert) encode(DIAMETERCodec)"}
    fx_dec_CER_MSG(inout bitstring pdu, out CER_MSG p_CER_MSG)  return integer
        with {extension "prototype(sliding) decode(DIAMETERCodec)"}


} // End of module LibDiameter_EncdecDeclarations
 No newline at end of file
Loading