MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / SetAddingNode

Method SetAddingNode

cpp/src/Node.h:321–321  ·  view source on GitHub ↗

These three *AddingNode functions are used to tell if we this node is just being discovered. Currently used by the Security CC to initiate the Network Key Exchange */

Source from the content-addressed store, hash-verified

319 bool IsController()const{ return ( m_basic == 0x01 || m_basic == 0x02 ) && ( m_generic == 0x01 || m_generic == 0x02 ); }
320 bool IsAddingNode() const { return m_addingNode; } /* These three *AddingNode functions are used to tell if we this node is just being discovered. Currently used by the Security CC to initiate the Network Key Exchange */
321 void SetAddingNode() { m_addingNode = true; }
322 void ClearAddingNode() { m_addingNode = false; }
323 bool IsNodeReset();
324 private:

Callers 1

InitNodeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected