1
0
Fork 0

flag to probe for inactive only

This commit is contained in:
Kevin Matz 2022-06-04 10:48:46 -04:00
parent ce8baafcf3
commit 497f45a0df
2 changed files with 7 additions and 0 deletions

View File

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

View File

@ -47,6 +47,12 @@ public:
private:
uint32_t transactionNumber;
/// > \cite RDMnet 5.4.2.1 Probe Request PDU
/// > LLRP Managers shall set this bit by default and shall only clear
/// > it as a result of a user-configured setting in a user-generated
/// > Probe Request.
bool probeInactiveOnly;
};
} // namespace RDMnet::LLRP