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

Method RequestNodeNeighborUpdate

cpp/src/Manager.cpp:4278–4291  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Ask a Node to update its Neighbor Table. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

4276// Ask a Node to update its Neighbor Table.
4277//-----------------------------------------------------------------------------
4278bool Manager::RequestNodeNeighborUpdate
4279(
4280 uint32 const _homeId,
4281 uint8 const _nodeId
4282)
4283{
4284 if (Driver *driver = GetDriver( _homeId ) ) {
4285 LockGuard LG(driver->m_nodeMutex);
4286 return driver->BeginControllerCommand(
4287 Driver::ControllerCommand_RequestNodeNeighborUpdate,
4288 NULL, NULL, true, _nodeId, 0);
4289 }
4290 return false;
4291}
4292
4293
4294//-----------------------------------------------------------------------------

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected