Commit 9879e188 authored by berge's avatar berge
Browse files

Fixed Lifetime issues in UT primitives

parent 91326e1a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ module LibItsGeoNetworking_Templates {
            template UtGnTrigger m_generateGeoUnicastMessage(GN_Address p_destinationGnAddr) := {
                geoUnicast := {
                    gnAddress := p_destinationGnAddr,
                    lifetime := c_defaultLifetime,
                    lifetime := 1000 * c_defaultLifetime,
                    payload := { decodedPayload := omit, rawPayload := ''O} // do not use f_adaptPayload_m here
                }
            }
@@ -144,7 +144,7 @@ module LibItsGeoNetworking_Templates {
                GeoArea p_area
            ) := {
                geoBroadcast := {
                    lifetime := c_defaultLifetime,
                    lifetime := 1000 * c_defaultLifetime,
                    area := p_area,
                    payload := { decodedPayload := omit, rawPayload := ''O} // do not use f_adaptPayload_m here
                }
@@ -187,7 +187,7 @@ module LibItsGeoNetworking_Templates {
                GeoArea p_area
            ) := {
                geoAnycast := {
                    lifetime := c_defaultLifetime,
                    lifetime := 1000 * c_defaultLifetime,
                    area := p_area,
                    payload := { decodedPayload := omit, rawPayload := ''O} // do not use f_adaptPayload_m here
                }
+2 −2
Original line number Diff line number Diff line
@@ -898,7 +898,7 @@ module LibItsGeoNetworking_TypesAndValues {
         */
        type record GenerateGeoUnicastMessage {
            GN_Address gnAddress,
            integer lifetime,
            UInt16 lifetime,
            Payload payload 
        }
        
@@ -908,7 +908,7 @@ module LibItsGeoNetworking_TypesAndValues {
         * @member  payload Payload of the packet
         */
        type record GenerateGeoBroadcastMessage {
            integer lifetime,
            UInt16 lifetime,
            GeoArea area,
            Payload payload 
        }