----------------------------------------------------------------------------- Get the security byte of a node -----------------------------------------------------------------------------
| 4821 | // Get the security byte of a node |
| 4822 | //----------------------------------------------------------------------------- |
| 4823 | uint8 Driver::GetNodeSecurity |
| 4824 | ( |
| 4825 | uint8 const _nodeId |
| 4826 | ) |
| 4827 | { |
| 4828 | uint8 security = 0; |
| 4829 | LockGuard LG(m_nodeMutex); |
| 4830 | if( Node* node = GetNode( _nodeId ) ) |
| 4831 | { |
| 4832 | security = node->GetSecurity(); |
| 4833 | } |
| 4834 | |
| 4835 | return security; |
| 4836 | } |
| 4837 | |
| 4838 | //----------------------------------------------------------------------------- |
| 4839 | // <Driver::GetNodeBasic> |
nothing calls this directly
no test coverage detected