| 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: |
| 325 | bool m_listening; |
nothing calls this directly
no outgoing calls
no test coverage detected