Commit 8aa86ce2 authored by garciay's avatar garciay
Browse files

Change msg fields into msgMap and msgSpat

parent aa7e32af
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ module LibItsMapSpat_Templates {
            template (present) ItsPduHeader p_itsPduHeader := ?,
            template (present) MapData p_map := ?
        ) := {
            msg := {
            msgMap := {
                header := p_itsPduHeader,
                mapData := p_map },
            rawData := ?
@@ -113,7 +113,7 @@ module LibItsMapSpat_Templates {
            template (present) ItsPduHeader p_itsPduHeader := ?,
            template (present) SPAT p_spat := ?
        ) := {
            msg := {
            msgSpat := {
                header := p_itsPduHeader,
                spatData := p_spat },
            rawData := ?
+38 −25
Original line number Diff line number Diff line
@@ -78,18 +78,27 @@ module LibItsMapSpat_TestSystem {

    group ApplPrimitives {
        
        type octetstring RawData;
            
        /**
        * @desc Appl MAP and SPAT Indication Primitive 
        */
        type octetstring RawData;
        type record MapMsg {
            MAP_PDU		msg,
            MAP_PDU        msgMap,
            RawData    rawData
        }
        with {
            encode (msg) "LibItsMapSpat_asn1"
        }
        
        type record SpatMsg {
            SPAT_PDU	msg,
            SPAT_PDU    msgSpat,
            RawData    rawData
        }
        with {
            encode (msg) "LibItsMapSpat_asn1"
        }
        
        type record MapInd { MapMsg msgIn };
        type record SpatInd { SpatMsg msgIn };
                
@@ -99,6 +108,10 @@ module LibItsMapSpat_TestSystem {
        type record MapReq { MAP_PDU msgOut };
        type record SpatReq { SPAT_PDU msgOut };
            
	} // end ApplPrimitives
    } with { 
        encode "LibIts_Interface" 
    } // end interfacePrimitives
    
     // end ApplPrimitives
    
} // End of module LibItsMapSpat_TestSystem