349a350,352
> // Quality of Service priority value
> uint8_t _qosValue;
>
672a676,694
> /**
> * QoS Value getter
> * Returns 0 if QoS value was never set (constructor default).
> *
> * @return QoS priority value of the packet
> */
> inline uint8_t qosValue() const { return _qosValue; }
>
> /**
> * QoS Value setter
> * Interface for setting QoS priority value of the packet.
> *
> * @param qos_value QoS priority value
> */
> inline void qosValue(const uint8_t qos_value)
> { _qosValue = qos_value; }
>
> inline MasterID masterId() const { return req->masterId(); }
>
749,750c771,773
< : cmd(_cmd), id((PacketId)_req.get()), req(_req), data(nullptr),
< addr(0), _isSecure(false), size(0), headerDelay(0), snoopDelay(0),
---
> : cmd(_cmd), id((PacketId)_req.get()), req(_req),
> data(nullptr), addr(0), _isSecure(false), size(0),
> _qosValue(0), headerDelay(0), snoopDelay(0),
771c794,795
< data(nullptr), addr(0), _isSecure(false), headerDelay(0),
---
> data(nullptr), addr(0), _isSecure(false),
> _qosValue(0), headerDelay(0),
794a819
> _qosValue(pkt->qosValue()),