1
0
Fork 0

keep a transaction number

This commit is contained in:
Kevin Matz 2021-09-19 22:37:57 -04:00
parent 1842c69b02
commit b95f6a72d6
2 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,7 @@ namespace RDMnet::LLRP {
*/
Manager::Manager(UUID::uuid cid)
: ACN::RLP::Component(cid)
, transactionNumber(0)
{
fctn_ = "OpenLCP LLRP Manager";

View File

@ -44,6 +44,9 @@ public:
virtual void sendProbeRequest();
virtual void receiveProbeReply(ACN::PDU::Message<LLRP::ProbeReply::Pdu>);
private:
uint32_t transactionNumber;
};
} // namespace RDMnet::LLRP