----------------------------------------------------------------------------- Ask a Node to update its Neighbor Table. -----------------------------------------------------------------------------
| 4276 | // Ask a Node to update its Neighbor Table. |
| 4277 | //----------------------------------------------------------------------------- |
| 4278 | bool 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 | //----------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected