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

Method IsNodeSecurityDevice

cpp/src/Manager.cpp:979–992  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get the security attribute for a node. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

977// Get the security attribute for a node.
978//-----------------------------------------------------------------------------
979bool 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>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected