----------------------------------------------------------------------------- Get the security byte of a node -----------------------------------------------------------------------------
| 1034 | // Get the security byte of a node |
| 1035 | //----------------------------------------------------------------------------- |
| 1036 | uint8 Manager::GetNodeSecurity |
| 1037 | ( |
| 1038 | uint32 const _homeId, |
| 1039 | uint8 const _nodeId |
| 1040 | ) |
| 1041 | { |
| 1042 | uint8 version = 0; |
| 1043 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1044 | { |
| 1045 | version = driver->GetNodeSecurity( _nodeId ); |
| 1046 | } |
| 1047 | |
| 1048 | return version; |
| 1049 | } |
| 1050 | |
| 1051 | |
| 1052 | //----------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected