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 */
| 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: |