MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / GetNodeSecurity

Method GetNodeSecurity

cpp/src/Manager.cpp:1036–1049  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get the security byte of a node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1034// Get the security byte of a node
1035//-----------------------------------------------------------------------------
1036uint8 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//-----------------------------------------------------------------------------

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected