----------------------------------------------------------------------------- Get the security attribute for a node. -----------------------------------------------------------------------------
| 977 | // Get the security attribute for a node. |
| 978 | //----------------------------------------------------------------------------- |
| 979 | bool Manager::IsNodeSecurityDevice |
| 980 | ( |
| 981 | uint32 const _homeId, |
| 982 | uint8 const _nodeId |
| 983 | ) |
| 984 | { |
| 985 | bool security = 0; |
| 986 | if( Driver* driver = GetDriver( _homeId ) ) |
| 987 | { |
| 988 | security = driver->IsNodeSecurityDevice( _nodeId ); |
| 989 | } |
| 990 | |
| 991 | return security; |
| 992 | } |
| 993 | |
| 994 | //----------------------------------------------------------------------------- |
| 995 | // <Manager::GetNodeMaxBaudRate> |
nothing calls this directly
no outgoing calls
no test coverage detected