Commit ccdea448 authored by berge's avatar berge
Browse files

Renamed Payload to SecPayload

parent 18236d1a
Loading
Loading
Loading
Loading
+5 −5
Original line number Original line Diff line number Diff line
@@ -419,7 +419,7 @@ module LibItsSecurity_TypesAndValues {
            UInt8           protocol_version,
            UInt8           protocol_version,
            UInt8           security_profile,
            UInt8           security_profile,
            HeaderFields    header_fields,
            HeaderFields    header_fields,
            Payloads        payload_fields optional, // Used by the codec to fill it with the secured packet in case of 'omit' value
            SecPayloads     payload_fields optional, // Used by the codec to fill it with the secured packet in case of 'omit' value
            TrailerFields   trailer_fields
            TrailerFields   trailer_fields
        } // End of type SecuredMessage
        } // End of type SecuredMessage
        
        
@@ -474,19 +474,19 @@ module LibItsSecurity_TypesAndValues {
         * 
         * 
         * @see Draft ETSI TS 103 097 V1.1.6 Clause 5.2 Payload
         * @see Draft ETSI TS 103 097 V1.1.6 Clause 5.2 Payload
         */
         */
        type record Payload {
        type record SecPayload {
            PayloadType         type_,
            SecPayloadType         type_,
            octetstring         data optional
            octetstring         data optional
        } // End of type Payload
        } // End of type Payload
        
        
        type record of Payload Payloads;
        type record of SecPayload SecPayloads;
        
        
        /**
        /**
         * @desc Supported types of payloads
         * @desc Supported types of payloads
         * 
         * 
         * @see Draft ETSI TS 103 097 V1.1.6 Clause 5.3 PayloadType
         * @see Draft ETSI TS 103 097 V1.1.6 Clause 5.3 PayloadType
         */
         */
        type enumerated PayloadType {
        type enumerated SecPayloadType {
            e_unsecured             (0),
            e_unsecured             (0),
            e_signed                (1),
            e_signed                (1),
            e_encrypted             (2),
            e_encrypted             (2),